Uses of Interface
org.owasp.esapi.ValidationRule
-
Packages that use ValidationRule Package Description org.owasp.esapi The ESAPI interfaces andException
classes 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 ValidationRule
Validator. getRule(java.lang.String name)
Methods in org.owasp.esapi with parameters of type ValidationRule Modifier and Type Method Description void
Validator. addRule(ValidationRule rule)
-
Uses of ValidationRule in org.owasp.esapi.reference
Methods in org.owasp.esapi.reference that return ValidationRule Modifier and Type Method Description ValidationRule
DefaultValidator. 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 void
DefaultValidator. 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 class
BaseValidationRule
A ValidationRule performs syntax and possibly semantic validation of a single piece of data from an untrusted source.class
CreditCardValidationRule
A validator performs syntax and possibly semantic validation of Credit Card String from an untrusted source.class
DateValidationRule
A validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.class
HTMLValidationRule
A validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.class
IntegerValidationRule
A validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.class
NumberValidationRule
A validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.class
StringValidationRule
A validator performs syntax and possibly semantic validation of a single piece of data from an untrusted source.
-