Package org.sourceid.saml20.adapter.gui
Enum ConnectionSelectionFieldDescriptor.ConnectionType
- java.lang.Object
-
- java.lang.Enum<ConnectionSelectionFieldDescriptor.ConnectionType>
-
- org.sourceid.saml20.adapter.gui.ConnectionSelectionFieldDescriptor.ConnectionType
-
- All Implemented Interfaces:
Serializable,Comparable<ConnectionSelectionFieldDescriptor.ConnectionType>
- Enclosing class:
- ConnectionSelectionFieldDescriptor
public static enum ConnectionSelectionFieldDescriptor.ConnectionType extends Enum<ConnectionSelectionFieldDescriptor.ConnectionType>
ConnectionType configures the data source (i.e. the Admin API end-point) that the filterable drop-down menu will poll its searchable data from.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IDP_CONNECTIONUsed when configuring for OIDC, WS-Fed, SAML1.0, SAML1.1 and SAML 2.0 IdP connections.SP_CONNECTIONUsed when configuring for WS-Fed, WS-Trust, SAML1.0, SAML1.1 and SAML 2.0 SP connections.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConnectionSelectionFieldDescriptor.ConnectionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ConnectionSelectionFieldDescriptor.ConnectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IDP_CONNECTION
public static final ConnectionSelectionFieldDescriptor.ConnectionType IDP_CONNECTION
Used when configuring for OIDC, WS-Fed, SAML1.0, SAML1.1 and SAML 2.0 IdP connections.
-
SP_CONNECTION
public static final ConnectionSelectionFieldDescriptor.ConnectionType SP_CONNECTION
Used when configuring for WS-Fed, WS-Trust, SAML1.0, SAML1.1 and SAML 2.0 SP connections.
-
-
Method Detail
-
values
public static ConnectionSelectionFieldDescriptor.ConnectionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConnectionSelectionFieldDescriptor.ConnectionType c : ConnectionSelectionFieldDescriptor.ConnectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectionSelectionFieldDescriptor.ConnectionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-