mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
RM-2044 (Add "Classified" aspect)
+review RM @rwetherall @tpage git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@101929 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -37,6 +37,28 @@
|
||||
<!-- Aspects -->
|
||||
<aspects>
|
||||
|
||||
<!-- Classified aspect -->
|
||||
<aspect name="clf:classified">
|
||||
<properties>
|
||||
<property name="clf:initialClassification">
|
||||
<title>Initial Classification</title>
|
||||
<type>d:text</type>
|
||||
</property>
|
||||
<property name="clf:currentClassification">
|
||||
<title>Current Classification</title>
|
||||
<type>d:text</type>
|
||||
</property>
|
||||
<property name="clf:classificationAuthority">
|
||||
<title>Classification Authority</title>
|
||||
<type>d:text</type>
|
||||
</property>
|
||||
<property name="clf:classificationReasons">
|
||||
<title>Classification Reasons</title>
|
||||
<type>d:text</type>
|
||||
<multiple>true</multiple>
|
||||
</property>
|
||||
</properties>
|
||||
</aspect>
|
||||
</aspects>
|
||||
|
||||
</model>
|
@@ -18,6 +18,8 @@
|
||||
*/
|
||||
package org.alfresco.module.org_alfresco_module_rm.classification.model;
|
||||
|
||||
import org.alfresco.service.namespace.QName;
|
||||
|
||||
/**
|
||||
* Classified content model interface.
|
||||
* <p>
|
||||
@@ -29,6 +31,13 @@ package org.alfresco.module.org_alfresco_module_rm.classification.model;
|
||||
public interface ClassifiedContentModel
|
||||
{
|
||||
/** Namespace details */
|
||||
String RM_URI = "http://www.alfresco.org/model/classifiedcontent/1.0";
|
||||
String RM_PREFIX = "clf";
|
||||
String CLF_URI = "http://www.alfresco.org/model/classifiedcontent/1.0";
|
||||
String CLF_PREFIX = "clf";
|
||||
|
||||
/** Classified aspect */
|
||||
QName ASPECT_CLASSIFIED = QName.createQName(CLF_URI, "classified");
|
||||
QName PROP_INITIAL_CLASSIFICATION = QName.createQName(CLF_URI, "initialClassification");
|
||||
QName PROP_CURRENT_CLASSIFICATION = QName.createQName(CLF_URI, "currentClassification");
|
||||
QName PROP_CLASSIFICATION_AUTHORITY = QName.createQName(CLF_URI, "classificationAuthority");
|
||||
QName PROP_CLASSIFICATION_REASONS = QName.createQName(CLF_URI, "classificationReasons");
|
||||
}
|
Reference in New Issue
Block a user