Uses of Class
org.sourceid.saml20.adapter.gui.validation.ValidationException
-
Packages that use ValidationException Package Description org.sourceid.saml20.adapter.gui Provides classes that enable an adapter to describe to PingFederate the way its GUI configuration screen should look.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
Methods in org.sourceid.saml20.adapter.gui that throw ValidationException Modifier and Type Method Description voidFilterableSelectionFieldDescriptor.FilterableSelectionFieldDefaultValidator. validate(Field field) -
Uses of ValidationException in org.sourceid.saml20.adapter.gui.validation
Methods in org.sourceid.saml20.adapter.gui.validation that throw ValidationException Modifier and Type Method Description voidConfigurationValidator. validate(Configuration configuration)Implementations of this method can perform any necessary validation on all the configuration values for an adapter.voidEnhancedRowValidator. validate(FieldList fieldsInRow, Configuration configuration)Providing the same functionality asRowValidator.validate(org.sourceid.saml20.adapter.conf.FieldList)but the configuration parameter is also provided to allow for intra-row validation (i.e.voidFieldValidator. validate(Field field)Implementations of this method can perform any necessary validation on the Field.voidRowValidator. validate(FieldList fieldsInRow)Implementations of this method can perform any necessary validation on all the Fields in a row on a table.voidTableValidator. validate(Table table)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 Modifier and Type Method Description voidDoubleValidator. validate(Field field)Validate if the fieldValue string represents a valid double and the value is within the specified boundary.voidFloatValidator. validate(Field field)Validate if the fieldValue string represents a valid float and the value is within the specified boundary.voidHostnameValidator. validate(Field field)voidHttpsURLValidator. validate(Field field)Validate if the fieldValue string represents a valid HTTPS URL.voidHttpURLValidator. validate(Field field)Validate if the fieldValue string represents a valid HTTP(s) URL.voidIntegerValidator. validate(Field field)Validate if the fieldValue string represents a valid 4-byte integer and the value is within the specified boundary.voidJwksValidator. validate(Field field)voidLongValidator. validate(Field field)Validate if the fieldValue string represents a valid 8-byte integer and the value is within the specified boundary.voidPingOneEnvironmentValidator. validate(Field field)Checks if the environment specified in the field exists within the PingOne connection.voidRegExValidator. validate(Field field)Validates the field value is properly formatted.voidRequiredFieldValidator. validate(Field field)If the value of the field is not null and not empty, this method returns silently.voidSecretReferenceFieldValidator. validate(Field field)Validate if the fieldValue string represents a valid secret reference.voidStringLengthValidator. validate(Field field)voidTableColumnValuesUniqueValidator. validate(Configuration configuration)voidURLValidator. validate(Field field)Validate if the fieldValue string represents a valid URL.
-