Enum OperationKindType
- java.lang.Object
-
- java.lang.Enum<OperationKindType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.OperationKindType
-
- All Implemented Interfaces:
Serializable,Comparable<OperationKindType>
public enum OperationKindType extends Enum<OperationKindType>
Java class for OperationKindType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OperationKindType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="clockworkExecution"/> <enumeration value="clockworkClick"/> <enumeration value="projectorExecution"/> <enumeration value="resourceObjectConstructionEvaluation"/> <enumeration value="mappingEvaluation"/> <enumeration value="assignmentEvaluation"/> <enumeration value="scriptEvaluation"/> <enumeration value="repositoryCache"/> <enumeration value="repository"/> <enumeration value="focusLoadCheck"/> <enumeration value="focusLoad"/> <enumeration value="projectionLoad"/> <enumeration value="fullProjectionLoad"/> <enumeration value="focusChangeExecution"/> <enumeration value="projectionChangeExecution"/> <enumeration value="provisioning"/> <enumeration value="connector"/> <enumeration value="other"/> <enumeration value="modelAudit"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNMENT_EVALUATIONEvaluation of an assignment.CLOCKWORK_CLICKSingle click of the clockwork.CLOCKWORK_EXECUTIONWhole execution (run) of the clockwork.CONNECTORConnector operation.FOCUS_CHANGE_EXECUTIONExecution of focus change.FOCUS_LOADFocus load check that resulted in focus being loaded.FOCUS_LOAD_CHECKCheck whether focus should be loaded.FULL_PROJECTION_LOADFull projection load.MAPPING_EVALUATIONEvaluation of a mapping.MODEL_AUDITRecording audit in model.OTHEROther kind of operation.PROJECTION_CHANGE_EXECUTIONExecution of projection change.PROJECTION_LOADProjection load.PROJECTOR_EXECUTIONExecution of the projector.PROVISIONINGProvisioning API operation.REPOSITORYRepository operation.REPOSITORY_CACHERepository cache operation.RESOURCE_OBJECT_CONSTRUCTION_EVALUATIONEvaluation of a resource object construction.SCRIPT_EVALUATIONEvaluation of a script.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationKindTypefromValue(String v)Stringvalue()static OperationKindTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OperationKindType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOCKWORK_EXECUTION
public static final OperationKindType CLOCKWORK_EXECUTION
Whole execution (run) of the clockwork.
-
CLOCKWORK_CLICK
public static final OperationKindType CLOCKWORK_CLICK
Single click of the clockwork.
-
PROJECTOR_EXECUTION
public static final OperationKindType PROJECTOR_EXECUTION
Execution of the projector.
-
RESOURCE_OBJECT_CONSTRUCTION_EVALUATION
public static final OperationKindType RESOURCE_OBJECT_CONSTRUCTION_EVALUATION
Evaluation of a resource object construction.
-
MAPPING_EVALUATION
public static final OperationKindType MAPPING_EVALUATION
Evaluation of a mapping.
-
ASSIGNMENT_EVALUATION
public static final OperationKindType ASSIGNMENT_EVALUATION
Evaluation of an assignment.
-
SCRIPT_EVALUATION
public static final OperationKindType SCRIPT_EVALUATION
Evaluation of a script.
-
REPOSITORY_CACHE
public static final OperationKindType REPOSITORY_CACHE
Repository cache operation.
-
REPOSITORY
public static final OperationKindType REPOSITORY
Repository operation.
-
FOCUS_LOAD_CHECK
public static final OperationKindType FOCUS_LOAD_CHECK
Check whether focus should be loaded. TODO really?
-
FOCUS_LOAD
public static final OperationKindType FOCUS_LOAD
Focus load check that resulted in focus being loaded. TODO really?
-
PROJECTION_LOAD
public static final OperationKindType PROJECTION_LOAD
Projection load.
-
FULL_PROJECTION_LOAD
public static final OperationKindType FULL_PROJECTION_LOAD
Full projection load.
-
FOCUS_CHANGE_EXECUTION
public static final OperationKindType FOCUS_CHANGE_EXECUTION
Execution of focus change.
-
PROJECTION_CHANGE_EXECUTION
public static final OperationKindType PROJECTION_CHANGE_EXECUTION
Execution of projection change.
-
PROVISIONING
public static final OperationKindType PROVISIONING
Provisioning API operation.
-
CONNECTOR
public static final OperationKindType CONNECTOR
Connector operation.
-
OTHER
public static final OperationKindType OTHER
Other kind of operation.
-
MODEL_AUDIT
public static final OperationKindType MODEL_AUDIT
Recording audit in model.
-
-
Method Detail
-
values
public static OperationKindType[] 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 (OperationKindType c : OperationKindType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationKindType 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()
-
fromValue
public static OperationKindType fromValue(String v)
-
-