Enum AuditSource
- java.lang.Object
-
- java.lang.Enum<AuditSource>
-
- org.openiam.idm.srvc.audit.constant.AuditSource
-
- All Implemented Interfaces:
Serializable
,Comparable<AuditSource>
public enum AuditSource extends Enum<AuditSource>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONNECTOR
EMAIL_MANAGER
ESB
EXTERNAL_APPLICATION
IDP
IMPORT_FROM_EXT_LOG
PROXY
RECONCILIATION
SELFSERVICE
SELFSERVICE_EXT
SOURCE_ADAPTER
SP
SYNCHRONIZATION
WEBCONSOLE
WORKFLOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
static AuditSource
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuditSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WEBCONSOLE
public static final AuditSource WEBCONSOLE
-
SELFSERVICE
public static final AuditSource SELFSERVICE
-
SELFSERVICE_EXT
public static final AuditSource SELFSERVICE_EXT
-
WORKFLOW
public static final AuditSource WORKFLOW
-
SOURCE_ADAPTER
public static final AuditSource SOURCE_ADAPTER
-
RECONCILIATION
public static final AuditSource RECONCILIATION
-
SYNCHRONIZATION
public static final AuditSource SYNCHRONIZATION
-
IDP
public static final AuditSource IDP
-
SP
public static final AuditSource SP
-
ESB
public static final AuditSource ESB
-
PROXY
public static final AuditSource PROXY
-
EXTERNAL_APPLICATION
public static final AuditSource EXTERNAL_APPLICATION
-
IMPORT_FROM_EXT_LOG
public static final AuditSource IMPORT_FROM_EXT_LOG
-
EMAIL_MANAGER
public static final AuditSource EMAIL_MANAGER
-
CONNECTOR
public static final AuditSource CONNECTOR
-
-
Method Detail
-
values
public static AuditSource[] 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 (AuditSource c : AuditSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditSource 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
-
value
public String value()
-
-