Skip to content

Commit

Permalink
Merge branch 'master' of git.evolveum.com:/srv/git/projects/midpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Mar 4, 2014
2 parents 3d43593 + 2966e27 commit b312708
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
Expand Up @@ -147,6 +147,12 @@ NodeExecutionStatus.DOWN=Turned off
NodeExecutionStatus.ERROR=Error
NodeExecutionStatus.COMMUNICATION_ERROR=Unreachable

NodeExecutionStatusType.RUNNING=Running
NodeExecutionStatusType.PAUSED=Stopped
NodeExecutionStatusType.DOWN=Turned off
NodeExecutionStatusType.ERROR=Error
NodeExecutionStatusType.COMMUNICATION_ERROR=Unreachable

ResourceStatus.NOT_TESTED=Not tested
ResourceStatus.ERROR=Error
ResourceStatus.SUCCESS=Success
Expand Down
Expand Up @@ -57,8 +57,6 @@ public enum ObjectTypes {

SHADOW(SchemaConstants.C_SHADOW_TYPE, SchemaConstants.C_SHADOW, ShadowType.class, ObjectManager.PROVISIONING, "shadows"),

OBJECT(SchemaConstants.C_OBJECT_TYPE, SchemaConstants.C_OBJECT, ObjectType.class, ObjectManager.MODEL, "objects"),

ROLE(RoleType.COMPLEX_TYPE, SchemaConstantsGenerated.C_ROLE, RoleType.class, ObjectManager.MODEL, "roles"),

PASSWORD_POLICY(ValuePolicyType.COMPLEX_TYPE, SchemaConstantsGenerated.C_VALUE_POLICY, ValuePolicyType.class,
Expand All @@ -76,7 +74,10 @@ public enum ObjectTypes {
REPORT(ReportType.COMPLEX_TYPE, SchemaConstants.C_REPORT, ReportType.class, ObjectManager.MODEL, "reports"),

REPORT_OUTPUT(ReportOutputType.COMPLEX_TYPE, SchemaConstants.C_REPORT_OUTPUT, ReportOutputType.class,
ObjectManager.MODEL, "reportOutputs");
ObjectManager.MODEL, "reportOutputs"),

// this should be at end, because otherwise it presents itself as entry for all subtypes of ObjectType
OBJECT(SchemaConstants.C_OBJECT_TYPE, SchemaConstants.C_OBJECT, ObjectType.class, ObjectManager.MODEL, "objects");

public static enum ObjectManager {
PROVISIONING, TASK_MANAGER, WORKFLOW, MODEL, REPOSITORY;
Expand Down

0 comments on commit b312708

Please sign in to comment.