RM-2604 Change the group type enumeration after comparison with requirements.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/DEV/caveatmarkdatatype@114110 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tom Page
2015-10-12 10:35:21 +00:00
parent 701f39d4d5
commit 48e056af67

View File

@@ -28,9 +28,9 @@ package org.alfresco.module.org_alfresco_module_rm.caveat.scheme;
public enum CaveatGroupType public enum CaveatGroupType
{ {
/** Each mark in the group implies all earlier marks also apply. */ /** Each mark in the group implies all earlier marks also apply. */
HIERACHICAL, HIERARCHICAL,
/** Each mark in the group implies that no other mark applies. */ /** Many marks may be applied to content, and users need all marks to access it. */
EXCLUSIVE, CUMULATIVE_SECURITY,
/** Each mark in the group has no bearing on the applicability of any other mark. */ /** Many marks may be applied to content, and users can access it with any one mark. */
INDEPENDENT CUMULATIVE_AVAILABILITY
} }