Package oracle.pgx.config
Enum PgxConfigPermission
- java.lang.Object
-
- java.lang.Enum<PgxConfigPermission>
-
- oracle.pgx.config.PgxConfigPermission
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PgxConfigPermission>
public enum PgxConfigPermission extends java.lang.Enum<PgxConfigPermission>
Enum that contains the valid permission types in the PGX config. Will be converted to a validPgxResourcePermission
after parsing.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PgxConfigPermission
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PgxConfigPermission[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final PgxConfigPermission READ
-
WRITE
public static final PgxConfigPermission WRITE
-
EXPORT
public static final PgxConfigPermission EXPORT
-
MANAGE
public static final PgxConfigPermission MANAGE
-
PGX_SESSION_CREATE
public static final PgxConfigPermission PGX_SESSION_CREATE
-
PGX_SESSION_SET_IDLE_TIMEOUT
public static final PgxConfigPermission PGX_SESSION_SET_IDLE_TIMEOUT
-
PGX_SESSION_NEW_GRAPH
public static final PgxConfigPermission PGX_SESSION_NEW_GRAPH
-
PGX_SESSION_GET_PUBLISHED_GRAPH
public static final PgxConfigPermission PGX_SESSION_GET_PUBLISHED_GRAPH
-
PGX_SESSION_ADD_PUBLISHED_GRAPH
public static final PgxConfigPermission PGX_SESSION_ADD_PUBLISHED_GRAPH
-
PGX_SESSION_COMPILE_ALGORITHM
public static final PgxConfigPermission PGX_SESSION_COMPILE_ALGORITHM
-
PGX_SERVER_GET_INFO
public static final PgxConfigPermission PGX_SERVER_GET_INFO
-
PGX_SERVER_MANAGE
public static final PgxConfigPermission PGX_SERVER_MANAGE
-
PGX_SESSION_READ_MODEL
public static final PgxConfigPermission PGX_SESSION_READ_MODEL
-
PGX_SESSION_MODIFY_MODEL
public static final PgxConfigPermission PGX_SESSION_MODIFY_MODEL
-
-
Method Detail
-
values
public static PgxConfigPermission[] 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 (PgxConfigPermission c : PgxConfigPermission.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PgxConfigPermission valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-