Package de.xima.fc.security.endpoint
Enum ESystemView
- java.lang.Object
-
- java.lang.Enum<ESystemView>
-
- de.xima.fc.security.endpoint.ESystemView
-
- All Implemented Interfaces:
IView
,IWebEndpoint
,Serializable
,Comparable<ESystemView>
public enum ESystemView extends Enum<ESystemView> implements IView
View definitions that require an authenticated in user with system role.- Since:
- 8.0.0
- Author:
- XIMA Media GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKEND_ACCESS
CLIENTS
CLUSTER
DASHBOARD
DATABASE
EXTERNAL_USER
FRONTENDSERVER
GENERAL
INFO
LICENSE
LOGGING
LOOK_FEEL
MAILSERVER
MESSAGES
PLUGIN
PROTOCOL
STATISTICS
SWAGGER
USER_PORTAL
USERS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IAuthorizer
getAuthorizer()
IAvailabiltyResolver
getAvailibilityResolver()
String
getId()
IUriResolver
getUriResolver()
String
toString()
static ESystemView
valueOf(String name)
Returns the enum constant of this type with the specified name.static ESystemView[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DASHBOARD
public static final ESystemView DASHBOARD
-
STATISTICS
public static final ESystemView STATISTICS
-
LICENSE
public static final ESystemView LICENSE
-
INFO
public static final ESystemView INFO
-
DATABASE
public static final ESystemView DATABASE
-
CLIENTS
public static final ESystemView CLIENTS
-
USERS
public static final ESystemView USERS
-
EXTERNAL_USER
public static final ESystemView EXTERNAL_USER
-
FRONTENDSERVER
public static final ESystemView FRONTENDSERVER
-
USER_PORTAL
public static final ESystemView USER_PORTAL
-
CLUSTER
public static final ESystemView CLUSTER
-
LOGGING
public static final ESystemView LOGGING
-
PLUGIN
public static final ESystemView PLUGIN
-
MAILSERVER
public static final ESystemView MAILSERVER
-
GENERAL
public static final ESystemView GENERAL
-
LOOK_FEEL
public static final ESystemView LOOK_FEEL
-
BACKEND_ACCESS
public static final ESystemView BACKEND_ACCESS
-
MESSAGES
public static final ESystemView MESSAGES
-
PROTOCOL
public static final ESystemView PROTOCOL
-
SWAGGER
public static final ESystemView SWAGGER
-
-
Method Detail
-
values
public static ESystemView[] 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 (ESystemView c : ESystemView.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ESystemView 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
-
getId
public String getId()
- Specified by:
getId
in interfaceIWebEndpoint
- Returns:
- the unique ID of this web endpoint.
-
getUriResolver
public IUriResolver getUriResolver()
- Specified by:
getUriResolver
in interfaceIWebEndpoint
- Returns:
- the uri resolver which defines the location of this endpoint.
-
getAvailibilityResolver
public IAvailabiltyResolver getAvailibilityResolver()
- Specified by:
getAvailibilityResolver
in interfaceIWebEndpoint
- Returns:
- the availability resolver that defines the availability requirements of this web endpoint. May be
null
. Ifnull
resolver is returned than the web endpoint is available.
-
getAuthorizer
public IAuthorizer getAuthorizer()
- Specified by:
getAuthorizer
in interfaceIWebEndpoint
- Returns:
- the authorizer that defines authorization requirements of this web endpoint. May be
null
. Ifnull
authorizer is returned than the view web enpoint is public, which means any user can access it.
-
toString
public String toString()
- Overrides:
toString
in classEnum<ESystemView>
-
-