Uses of Class
org.sourceid.saml20.adapter.conf.Field

Packages that use Field
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.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
 

Methods in org.sourceid.saml20.adapter.conf that return Field
 Field FieldList.getField(java.lang.String name)
          Gets the Field by name
 

Methods in org.sourceid.saml20.adapter.conf that return types with arguments of type Field
 java.util.List<Field> FieldList.getFields()
          Gets the list of Fields
 

Constructor parameters in org.sourceid.saml20.adapter.conf with type arguments of type Field
Configuration(java.util.List<Field> fields, java.util.List<Table> tables, java.util.List<Field> advancedFields)
           
Configuration(java.util.List<Field> fields, java.util.List<Table> tables, java.util.List<Field> advancedFields)
           
FieldList(java.util.List<Field> fields)
           
Row(java.util.List<Field> fields)
           
SimpleFieldList(java.util.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.validation
 

Methods in org.sourceid.saml20.adapter.gui.validation with parameters of type Field
 void FieldValidator.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
 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.
 



Copyright 2007 Ping Identity Corp. All rights reserved.