Package org.kuali.rice.kns.util
Class ErrorContainer
java.lang.Object
org.kuali.rice.kns.util.ErrorContainer
- All Implemented Interfaces:
Serializable
Deprecated.
Only used in KNS classes, use KRAD.
Provides access to a copy of an ErrorMap and information derived from it. Necessary because ErrorMap implements the Map
interface, which for some reason makes JSTL unwilling to translate ErrorMap.errorCount into a call to the getErrorCount method of
that ErrorMap instance.
Since I had to create this class to provide easy access to the error count (which must be computed as the sum of the sizes of the
error message lists of all properties in the ErrorMap), I also moved in the existing code which massaged the contents of the
ErrorMap for the purposes of export to the JSP.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionErrorContainer(MessageMap errorMap) Deprecated.Constructs an ErrorContainer -
Method Summary
Modifier and TypeMethodDescriptionintDeprecated.Deprecated.org.apache.struts.action.ActionMessagesDeprecated.
-
Constructor Details
-
ErrorContainer
Deprecated.Constructs an ErrorContainer- Parameters:
errorMap-
-
-
Method Details
-
getErrorCount
public int getErrorCount()Deprecated.- Returns:
- number of errors in the ErrorMap used to initialize this container
-
getErrorPropertyList
Deprecated.- Returns:
- simple List of all properies for which errorMessages exist in the ErrorMap used to initialize this container
-
getRequestErrors
public org.apache.struts.action.ActionMessages getRequestErrors()Deprecated.- Returns:
- ActionMessages instance containing error messages constructed from the contents of the ErrorMap with which this container was initialized
-