Package org.sourceid.saml20.adapter.gui
Class DsigKeypairFieldDescriptor
- java.lang.Object
-
- org.sourceid.saml20.adapter.gui.FieldDescriptor
-
- org.sourceid.saml20.adapter.gui.AbstractSelectionFieldDescriptor
-
- org.sourceid.saml20.adapter.gui.SelectFieldDescriptor
-
- org.sourceid.saml20.adapter.gui.CertificateSelectionFieldDescriptor
-
- org.sourceid.saml20.adapter.gui.DsigKeypairFieldDescriptor
-
- All Implemented Interfaces:
Serializable
public class DsigKeypairFieldDescriptor extends CertificateSelectionFieldDescriptor
A field descriptor that will render (in GUI configuration screen) a drop down selection of all the key pairs in the PingFederate system configured for digital signing.
The value of this field in theConfigurationwill be the alias of the selected key pair.
You can use the alias to retrieve the key pair viaKeyAccessor.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.sourceid.saml20.adapter.gui.AbstractSelectionFieldDescriptor
AbstractSelectionFieldDescriptor.OptionValue
-
Nested classes/interfaces inherited from class org.sourceid.saml20.adapter.gui.FieldDescriptor
FieldDescriptor.FieldValidationWrapper
-
-
Field Summary
-
Fields inherited from class org.sourceid.saml20.adapter.gui.CertificateSelectionFieldDescriptor
DEFAULT_SUBJECT_DN_LENGTH_FOR_DISPLAY
-
Fields inherited from class org.sourceid.saml20.adapter.gui.SelectFieldDescriptor
DEFAULT, SELECT_ONE
-
Fields inherited from class org.sourceid.saml20.adapter.gui.AbstractSelectionFieldDescriptor
NONE_SELECTED
-
-
Constructor Summary
Constructors Constructor Description DsigKeypairFieldDescriptor(String name, String description)Create a new DsigKeypairFieldDescriptor.
-
Method Summary
-
Methods inherited from class org.sourceid.saml20.adapter.gui.CertificateSelectionFieldDescriptor
getFormattedValue, getOptionValues
-
Methods inherited from class org.sourceid.saml20.adapter.gui.AbstractSelectionFieldDescriptor
setOptionValues
-
Methods inherited from class org.sourceid.saml20.adapter.gui.FieldDescriptor
addValidator, addValidator, getDefaultForLegacyConfig, getDefaultValue, getDescription, getLabel, getName, getValidationChain, isHidden, setDefaultForLegacyConfig, setDefaultValue, setHidden, setLabel
-
-
-
-
Constructor Detail
-
DsigKeypairFieldDescriptor
public DsigKeypairFieldDescriptor(String name, String description)
Create a new DsigKeypairFieldDescriptor.- Parameters:
name- The field name (must be unique per AdapterConfigurationGuiDescriptor or TableDescriptor). This name will also be used as the label for the field in the administrative console. To ensure configuration can be read in future releases of a plugin, it is recommended to not change a field's name - instead use a label to rename it in the administrative console.description- A helpful description of the field.
-
-