org.apache.struts.action.ActionError Maven / Gradle / Ivy
Show all versions of ibis-struts Show documentation
/*
* $Id: ActionError.java 54929 2004-10-16 16:38:42Z germuska $
*
* Copyright 2000-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.struts.action;
import java.io.Serializable;
/**
* An encapsulation of an individual error message returned by the
* validate
method of an ActionForm
, consisting
* of a message key (to be used to look up message text in an appropriate
* message resources database) plus up to four placeholder objects that can
* be used for parametric replacement in the message text.
*
* The placeholder objects are referenced in the message text using the same
* syntax used by the JDK MessageFormat
class. Thus, the first
* placeholder is '{0}', the second is '{1}', etc.
*
* Since Struts 1.1 ActionError
extends ActionMessage
.
*
* @version $Rev: 54929 $ $Date: 2004-10-16 17:38:42 +0100 (Sat, 16 Oct 2004) $
* @deprecated Please use ActionMessage
instead, deprecated since 1.2.0.
*/
public class ActionError extends ActionMessage implements Serializable {
// ----------------------------------------------------------- Constructors
/**
*
Construct an action error with no replacement values.
*
* @param key Message key for this error message
*/
public ActionError(String key) {
super(key);
}
/**
* Construct an action error with the specified replacement values.
*
* @param key Message key for this error message
* @param value0 First replacement value
*/
public ActionError(String key, Object value0) {
super(key, value0);
}
/**
* Construct an action error with the specified replacement values.
*
* @param key Message key for this error message
* @param value0 First replacement value
* @param value1 Second replacement value
*/
public ActionError(String key, Object value0, Object value1) {
super(key, value0, value1);
}
/**
* Construct an action error with the specified replacement values.
*
* @param key Message key for this error message
* @param value0 First replacement value
* @param value1 Second replacement value
* @param value2 Third replacement value
*/
public ActionError(String key, Object value0, Object value1,
Object value2) {
super(key, value0, value1, value2);
}
/**
* Construct an action error with the specified replacement values.
*
* @param key Message key for this error message
* @param value0 First replacement value
* @param value1 Second replacement value
* @param value2 Third replacement value
* @param value3 Fourth replacement value
*/
public ActionError(String key, Object value0, Object value1,
Object value2, Object value3) {
super(key, value0, value1, value2, value3);
}
/**
* Construct an action error with the specified replacement values.
*
* @param key Message key for this message
* @param values Array of replacement values
*/
public ActionError(String key, Object[] values) {
super(key, values);
}
}