Uses of Class
org.sourceid.saml20.adapter.conf.Field
-
Packages that use Field Package Description org.sourceid.saml20.adapter.conf Provides classes that are containers for configuration values entered by the user/administrator via the PingFederate GUI administration console.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 Field in org.sourceid.saml20.adapter.conf
Subclasses of Field in org.sourceid.saml20.adapter.conf Modifier and Type Class Description classHashedFieldThis class holds the name, the secure salted hash of the current value and the new user-entered plaintext value of a GUI-rendered configuration field.Methods in org.sourceid.saml20.adapter.conf that return Field Modifier and Type Method Description FieldFieldList. getField(String name)Gets the Field by nameMethods in org.sourceid.saml20.adapter.conf that return types with arguments of type Field Modifier and Type Method Description List<Field>FieldList. getFields()Gets the list of FieldsMap<String,Field>FieldList. getReadOnlyFieldMap()Returns an unmodifiable copy of the fieldsMapMethods in org.sourceid.saml20.adapter.conf with parameters of type Field Modifier and Type Method Description voidFieldList. addField(Field field)Adds a Field to FieldListConstructor parameters in org.sourceid.saml20.adapter.conf with type arguments of type Field Constructor Description Configuration(List<Field> fields, List<Table> tables, List<Field> advancedFields)Configuration(List<Field> fields, List<Table> tables, FieldList advancedFields)Row(List<Field> fields)Row(List<Field> fields, boolean isDefaultRow)SimpleFieldList(List<Field> fields)Secondary constructor that takes an existing list of fields and sets the internal field list. -
Uses of Field in org.sourceid.saml20.adapter.gui
Methods in org.sourceid.saml20.adapter.gui with parameters of type Field Modifier and Type Method Description voidFilterableSelectionFieldDescriptor.FilterableSelectionFieldDefaultValidator. validate(Field field) -
Uses of Field in org.sourceid.saml20.adapter.gui.validation
Methods in org.sourceid.saml20.adapter.gui.validation with parameters of type Field Modifier and Type Method Description voidFieldValidator. validate(Field field)Implementations of this method can perform any necessary validation on the Field. -
Uses of Field in org.sourceid.saml20.adapter.gui.validation.impl
Methods in org.sourceid.saml20.adapter.gui.validation.impl with parameters of type Field Modifier and Type Method Description List<String>TableColumnValuesUniqueValidator. processValue(Field field)Method that extracts the values from a given field.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)voidURLValidator. validate(Field field)Validate if the fieldValue string represents a valid URL.
-