public enum SamlServiceType extends Enum<SamlServiceType>
| Enum Constant and Description |
|---|
SAML_ASSERTION_CONSUMER_SERVICE |
SAML_META_DATA_SERVICE |
SAML_SINGLE_LOGOUT_SERVICE |
SAML_SINGLE_SIGN_ON_SERVICE |
| Modifier and Type | Method and Description |
|---|---|
static SamlServiceType |
getByName(String name) |
String |
getName() |
SamlProfile |
getProfile() |
static SamlServiceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamlServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamlServiceType SAML_SINGLE_SIGN_ON_SERVICE
public static final SamlServiceType SAML_ASSERTION_CONSUMER_SERVICE
public static final SamlServiceType SAML_SINGLE_LOGOUT_SERVICE
public static final SamlServiceType SAML_META_DATA_SERVICE
public static SamlServiceType[] values()
for (SamlServiceType c : SamlServiceType.values()) System.out.println(c);
public static SamlServiceType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String getName()
public SamlProfile getProfile()
public static SamlServiceType getByName(String name)
Copyright © 2013 Seam Framework. All Rights Reserved.