Class Capabilities
- java.lang.Object
-
- de.aristaflow.adept2.base.sessionmanagement.Capabilities
-
public class Capabilities extends Object
This class provides constants for capabilities of security tokens. The capabilities will be set when creating the security token for an agent in the logon procedure.- Author:
- UlrichKreher
-
-
Field Summary
Fields Modifier and Type Field Description static String
LOCAL_SYSTEM_ROLE
The security token stems from an agent having a local system role.static String
SUPERVISOR_ROLE
The security token stems from an agent having the supervisor role which is for human users having nearly all privileges in the system.static String
SYSTEM_ROLE
The security token stems from an agent having the system role which is for system components needing a session factory.
-
Constructor Summary
Constructors Constructor Description Capabilities()
-
-
-
Field Detail
-
SYSTEM_ROLE
public static final String SYSTEM_ROLE
The security token stems from an agent having the system role which is for system components needing a session factory.- See Also:
- Constant Field Values
-
SUPERVISOR_ROLE
public static final String SUPERVISOR_ROLE
The security token stems from an agent having the supervisor role which is for human users having nearly all privileges in the system.- See Also:
- Constant Field Values
-
LOCAL_SYSTEM_ROLE
public static final String LOCAL_SYSTEM_ROLE
The security token stems from an agent having a local system role. This is for system components that are started before the global security manager in the bootstrapping procedure. Such a security token only has the system role with regard to the local bootstrapping; it is not authenticated asglobal system
.- See Also:
- Constant Field Values
-
-