Uses of Interface
org.owasp.esapi.ValidationRule
-
Packages that use ValidationRule Package Description org.owasp.esapi The ESAPI interfaces andExceptionclasses model the most important security functions to enterprise web applications.org.owasp.esapi.reference This package contains reference implementations of the ESAPI interfaces.org.owasp.esapi.reference.validation This package contains data format-specific validation rule functions. -
-
Uses of ValidationRule in org.owasp.esapi
Methods in org.owasp.esapi that return ValidationRule Modifier and Type Method Description ValidationRuleValidator. getRule(java.lang.String name)Get a validation rule from the registry with the "type name" of the rule as the key.Methods in org.owasp.esapi with parameters of type ValidationRule Modifier and Type Method Description voidValidator. addRule(ValidationRule rule)Add a validation rule to the registry using the "type name" of the rule as the key. -
Uses of ValidationRule in org.owasp.esapi.reference
Methods in org.owasp.esapi.reference that return ValidationRule Modifier and Type Method Description ValidationRuleDefaultValidator. getRule(java.lang.String name)Get a validation rule from the registry with the "type name" of the rule as the key.Methods in org.owasp.esapi.reference with parameters of type ValidationRule Modifier and Type Method Description voidDefaultValidator. addRule(ValidationRule rule)Add a validation rule to the registry using the "type name" of the rule as the key. -
Uses of ValidationRule in org.owasp.esapi.reference.validation
Classes in org.owasp.esapi.reference.validation that implement ValidationRule Modifier and Type Class Description classBaseValidationRuleA ValidationRule performs syntax and possibly semantic validation of a single piece of data from an untrusted source.classCreditCardValidationRuleA validator performs syntax and possibly semantic validation of Credit Card String from an untrusted source.classDateValidationRuleA validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.classHTMLValidationRuleA validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.classIntegerValidationRuleA validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.classNumberValidationRuleA validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.classStringValidationRuleA validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.
-