Package org.wso2.carbon
Enum CarbonConstants.LogEventConstants.EventCatalog
- java.lang.Object
-
- java.lang.Enum<CarbonConstants.LogEventConstants.EventCatalog>
-
- org.wso2.carbon.CarbonConstants.LogEventConstants.EventCatalog
-
- All Implemented Interfaces:
Serializable,Comparable<CarbonConstants.LogEventConstants.EventCatalog>
- Enclosing class:
- CarbonConstants.LogEventConstants
public static enum CarbonConstants.LogEventConstants.EventCatalog extends Enum<CarbonConstants.LogEventConstants.EventCatalog>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEventDescription()StringgetEventId()StringtoString()static CarbonConstants.LogEventConstants.EventCatalogvalueOf(String name)Returns the enum constant of this type with the specified name.static CarbonConstants.LogEventConstants.EventCatalog[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_APPLICATION
public static final CarbonConstants.LogEventConstants.EventCatalog CREATE_APPLICATION
-
UPDATE_APPLICATION
public static final CarbonConstants.LogEventConstants.EventCatalog UPDATE_APPLICATION
-
DELETE_APPLICATION
public static final CarbonConstants.LogEventConstants.EventCatalog DELETE_APPLICATION
-
CREATE_IDP
public static final CarbonConstants.LogEventConstants.EventCatalog CREATE_IDP
-
UPDATE_IDP
public static final CarbonConstants.LogEventConstants.EventCatalog UPDATE_IDP
-
DELETE_IDP
public static final CarbonConstants.LogEventConstants.EventCatalog DELETE_IDP
-
CREATE_USER
public static final CarbonConstants.LogEventConstants.EventCatalog CREATE_USER
-
UPDATE_USER
public static final CarbonConstants.LogEventConstants.EventCatalog UPDATE_USER
-
DELETE_USER
public static final CarbonConstants.LogEventConstants.EventCatalog DELETE_USER
-
CREATE_GROUP
public static final CarbonConstants.LogEventConstants.EventCatalog CREATE_GROUP
-
UPDATE_GROUP
public static final CarbonConstants.LogEventConstants.EventCatalog UPDATE_GROUP
-
DELETE_GROUP
public static final CarbonConstants.LogEventConstants.EventCatalog DELETE_GROUP
-
CREATE_ROLE
public static final CarbonConstants.LogEventConstants.EventCatalog CREATE_ROLE
-
UPDATE_ROLE
public static final CarbonConstants.LogEventConstants.EventCatalog UPDATE_ROLE
-
DELETE_ROLE
public static final CarbonConstants.LogEventConstants.EventCatalog DELETE_ROLE
-
CREATE_ATTRIBUTE
public static final CarbonConstants.LogEventConstants.EventCatalog CREATE_ATTRIBUTE
-
UPDATE_ATTRIBUTE
public static final CarbonConstants.LogEventConstants.EventCatalog UPDATE_ATTRIBUTE
-
DELETE_ATTRIBUTE
public static final CarbonConstants.LogEventConstants.EventCatalog DELETE_ATTRIBUTE
-
-
Method Detail
-
values
public static CarbonConstants.LogEventConstants.EventCatalog[] 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 (CarbonConstants.LogEventConstants.EventCatalog c : CarbonConstants.LogEventConstants.EventCatalog.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CarbonConstants.LogEventConstants.EventCatalog 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
-
getEventId
public String getEventId()
-
getEventDescription
public String getEventDescription()
-
toString
public String toString()
- Overrides:
toStringin classEnum<CarbonConstants.LogEventConstants.EventCatalog>
-
-