|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ValidationException | |
---|---|
org.sourceid.saml20.adapter.gui.validation | Provides interfaces that can be implemented to provide custom validation of data entered by administrators/users via the GUI. |
org.sourceid.saml20.adapter.gui.validation.impl | Provides implementations of some commonly needed field level validation. |
Uses of ValidationException in org.sourceid.saml20.adapter.gui.validation |
---|
Methods in org.sourceid.saml20.adapter.gui.validation that throw ValidationException | |
---|---|
void |
ConfigurationValidator.validate(Configuration configuration)
Implementations of this method can perform any necessary validation on all the configuration values for an adapter. |
void |
FieldValidator.validate(Field field)
Implementations of this method can perform any necessary validation on the Field. |
void |
RowValidator.validate(FieldList fieldsInRow)
Implementations of this method can perform any necessary validation on all the Fields in a row on a table. |
Uses of ValidationException in org.sourceid.saml20.adapter.gui.validation.impl |
---|
Methods in org.sourceid.saml20.adapter.gui.validation.impl that throw ValidationException | |
---|---|
void |
URLValidator.validate(Field field)
Validate if the fieldValue string represents a valid URL. |
void |
RequiredFieldValidator.validate(Field field)
If the value of the field is not null and not empty, this method returns silently. |
void |
LongValidator.validate(Field field)
Validate if the fieldValue string represents a valid 8-byte integer and the value is within the specified boundary. |
void |
IntegerValidator.validate(Field field)
Validate if the fieldValue string represents a valid 4-byte integer and the value is within the specified boundary. |
void |
HttpURLValidator.validate(Field field)
Validate if the fieldValue string represents a valid HTTP(s) URL. |
void |
FloatValidator.validate(Field field)
Validate if the fieldValue string represents a valid float and the value is within the specified boundary. |
void |
DoubleValidator.validate(Field field)
Validate if the fieldValue string represents a valid double and the value is within the specified boundary. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |