Enum AuthenticationType
- java.lang.Object
- 
- java.lang.Enum<AuthenticationType>
- 
- com.boomi.common.rest.authentication.AuthenticationType
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<AuthenticationType>
 
 public enum AuthenticationType extends Enum<AuthenticationType> Supported Authentication types with its implementation ofAuthSchemeProvider
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthenticationTypefromValue(String value)AuthSchemeProvidergetAuthSchemeProvider()Collection<String>getPreferredAuthSchemes()StringgetSchemeName()static AuthenticationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final AuthenticationType NONE 
 - 
BASICpublic static final AuthenticationType BASIC 
 - 
DIGESTpublic static final AuthenticationType DIGEST 
 - 
OAUTH2public static final AuthenticationType OAUTH2 
 - 
AWSpublic static final AuthenticationType AWS 
 - 
AWS_ROLES_ANYWHEREpublic static final AuthenticationType AWS_ROLES_ANYWHERE 
 - 
CUSTOMpublic static final AuthenticationType CUSTOM 
 - 
NTLMpublic static final AuthenticationType NTLM 
 - 
API_KEYpublic static final AuthenticationType API_KEY 
 
- 
 - 
Method Detail- 
valuespublic static AuthenticationType[] 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 (AuthenticationType c : AuthenticationType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AuthenticationType 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 name
- NullPointerException- if the argument is null
 
 - 
getSchemeNamepublic String getSchemeName() 
 - 
getAuthSchemeProviderpublic AuthSchemeProvider getAuthSchemeProvider() 
 - 
getPreferredAuthSchemespublic Collection<String> getPreferredAuthSchemes() 
 - 
fromValuepublic static AuthenticationType fromValue(String value) 
 
- 
 
-