Examples of ExpandedMessage


Examples of com.scooterframework.common.util.ExpandedMessage

     * Records a validation error message
     *
     * @param messageKey    error message key or error message
     */
    public void recordValidationException(String messageKey) {
        recordValidationException(new ExpandedMessage(messageKey));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     *
     * @param key String key or field
     * @param messageKey    error message key or error message
     */
    public void recordValidationException(String key, String messageKey) {
        recordValidationException(new ExpandedMessage(key, messageKey));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param key String key or field
     * @param messageKey    error message key or error message
     * @param value a value that can be used in the message
     */
    public void recordValidationException(String key, String messageKey, Object value) {
        recordValidationException(new ExpandedMessage(key, messageKey, value));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param messageKey    error message key or error message
     * @param value0 a value that can be used in the message
     * @param value1 a value that can be used in the message
     */
    public void recordValidationException(String key, String messageKey, Object value0, Object value1) {
        recordValidationException(new ExpandedMessage(key, messageKey, value0, value1));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param value0 a value that can be used in the message
     * @param value1 a value that can be used in the message
     * @param value2 a value that can be used in the message
     */
    public void recordValidationException(String key, String messageKey, Object value0, Object value1, Object value2) {
        recordValidationException(new ExpandedMessage(key, messageKey, value0, value1, value2));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param key String key or field
     * @param messageKey    error message key or error message
     * @param values an array of values that can be used in the message
     */
    public void recordValidationException(String key, String messageKey, Object[] values) {
        recordValidationException(new ExpandedMessage(key, messageKey, values));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param type      flash message type
     * @param message   the message or message key
     * @param value     a value that can be used in the message
     */
    public static void flash(String type, String message, Object value) {
        flash(type, new ExpandedMessage(null, message, value));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param message   the message or message key
     * @param value0    a value that can be used in the message
     * @param value1    a value that can be used in the message
     */
    public static void flash(String type, String message, Object value0, Object value1) {
        flash(type, new ExpandedMessage(null, message, value0, value1));
    }
View Full Code Here

Examples of com.scooterframework.common.util.ExpandedMessage

     * @param value0    a value that can be used in the message
     * @param value1    a value that can be used in the message
     * @param value2    a value that can be used in the message
     */
    public static void flash(String type, String message, Object value0, Object value1, Object value2) {
        flash(type, new ExpandedMessage(null, message, value0, value1, value2));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.