Package de.xima.fc.security.endpoint
Enum EProtectedView
- java.lang.Object
- 
- java.lang.Enum<EProtectedView>
- 
- de.xima.fc.security.endpoint.EProtectedView
 
 
- 
- All Implemented Interfaces:
- IView,- IWebEndpoint,- Serializable,- Comparable<EProtectedView>
 
 public enum EProtectedView extends Enum<EProtectedView> implements IView Protected view definitions that require an authenticated user- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description EXTERNAL_PROJECTSMFA_VERIFYSCOPE_SELECTIONUSER_PROFILE
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IAuthorizergetAuthorizer()IAvailabiltyResolvergetAvailibilityResolver()StringgetId()IUriResolvergetUriResolver()StringtoString()static EProtectedViewvalueOf(String name)Returns the enum constant of this type with the specified name.static EProtectedView[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
SCOPE_SELECTIONpublic static final EProtectedView SCOPE_SELECTION 
 - 
MFA_VERIFYpublic static final EProtectedView MFA_VERIFY 
 - 
USER_PROFILEpublic static final EProtectedView USER_PROFILE 
 - 
EXTERNAL_PROJECTSpublic static final EProtectedView EXTERNAL_PROJECTS 
 
- 
 - 
Method Detail- 
valuespublic static EProtectedView[] 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 (EProtectedView c : EProtectedView.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static EProtectedView 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
 
 - 
getIdpublic String getId() - Specified by:
- getIdin interface- IWebEndpoint
- Returns:
- the unique ID of this web endpoint.
 
 - 
getUriResolverpublic IUriResolver getUriResolver() - Specified by:
- getUriResolverin interface- IWebEndpoint
- Returns:
- the uri resolver which defines the location of this endpoint.
 
 - 
getAvailibilityResolverpublic IAvailabiltyResolver getAvailibilityResolver() - Specified by:
- getAvailibilityResolverin interface- IWebEndpoint
- Returns:
- the availability resolver that defines the availability requirements of this web endpoint. May be null. Ifnullresolver is returned than the web endpoint is available.
 
 - 
getAuthorizerpublic IAuthorizer getAuthorizer() - Specified by:
- getAuthorizerin interface- IWebEndpoint
- Returns:
- the authorizer that defines authorization requirements of this web endpoint. May be null. Ifnullauthorizer is returned than the view web enpoint is public, which means any user can access it.
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<EProtectedView>
 
 
- 
 
-