![JAR search and dependency download from the Maven repository](/logo.png)
com.opensymphony.xwork2.validator.ValidatorFileParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwork Show documentation
Show all versions of xwork Show documentation
XWork is an command-pattern framework that is used to power WebWork
as well as other applications. XWork provides an Inversion of Control
container, a powerful expression language, data type conversion,
validation, and pluggable configuration.
package com.opensymphony.xwork2.validator;
import java.util.List;
import java.util.Map;
import java.io.InputStream;
/**
* Parse the validation file. (eg. MyAction-validation.xml, MyAction-actionAlias-validation.xml)
* to return a List of ValidatorConfig encapsulating the validator information.
*
* @author Jason Carreira
* @author James House
* @author tm_jee ( tm_jee (at) yahoo.co.uk )
* @author Rob Harrop
* @author Rene Gielen
*
* @see com.opensymphony.xwork2.validator.ValidatorConfig
*/
public interface ValidatorFileParser {
/**
* Parse resource for a list of ValidatorConfig objects.
*
* @param is input stream to the resource
* @param resourceName file name of the resource
* @return List list of ValidatorConfig
*/
List parseActionValidatorConfigs(ValidatorFactory validatorFactory, InputStream is, String resourceName);
/**
* Parses validator definitions
*
* @param is The input stream
* @param resourceName The location of the input stream
*/
void parseValidatorDefinitions(Map validators, InputStream is, String resourceName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy