|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.atlassian.confluence.xwork.ConfluenceActionValidatorManager
public class ConfluenceActionValidatorManager
Copy of the XWork ActionValidatorManager that clears the context of validators before it caches them. Since validator contexts were composed of actions, this was causing action instances to end up in the cache where they would hang around forever holding onto references to the entire Spring context. This class makes use of a delegating validationContext. This is to prevent race conditions. It delegates to a threadlocal to ensure that any validation messages are set on the appropriate context and any information is retrieved from the correct context. As the context contains rather large (in Mb) objects, it is absolutely essential that it is set to null when the method returns. Contains code that is Copyright (c) 2002-2003 by OpenSymphony, used under the Apache license, original author credits included below:
Field Summary | |
---|---|
protected static String |
VALIDATION_CONFIG_SUFFIX
The file suffix for any validation file. |
Constructor Summary | |
---|---|
ConfluenceActionValidatorManager()
|
Method Summary | |
---|---|
protected static String |
buildValidatorKey(Class clazz,
String context)
Builds a key for validators - used when caching validators. |
static List |
getValidators(Class clazz,
String context)
Returns a list of validators for the given class and context. |
static void |
validate(Object object,
String context)
Validates the given object using action and its context. |
static void |
validate(Object object,
String context,
com.opensymphony.xwork.validator.ValidatorContext validatorContext)
Validates an action give its context and a validation context. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected static final String VALIDATION_CONFIG_SUFFIX
Constructor Detail |
---|
public ConfluenceActionValidatorManager()
Method Detail |
---|
public static List getValidators(Class clazz, String context)
clazz
- the class to lookup.context
- the context of the action class - can be null.
public static void validate(Object object, String context) throws com.opensymphony.xwork.validator.ValidationException
object
- the action to validate.context
- the action's context.
com.opensymphony.xwork.validator.ValidationException
- if an error happens when validating the action.public static void validate(Object object, String context, com.opensymphony.xwork.validator.ValidatorContext validatorContext) throws com.opensymphony.xwork.validator.ValidationException
object
- the action to validate.context
- the action's context.validatorContext
-
com.opensymphony.xwork.validator.ValidationException
- if an error happens when validating the action.protected static String buildValidatorKey(Class clazz, String context)
clazz
- the action.context
- the action's context.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |