mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
29 lines
862 B
Java
29 lines
862 B
Java
/*
|
|
* #%L
|
|
* Alfresco Records Management Module
|
|
* %%
|
|
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
|
* %%
|
|
* License rights for this program may be obtained from Alfresco Software, Ltd.
|
|
* pursuant to a written agreement and any use of this program without such an
|
|
* agreement is prohibited.
|
|
* #L%
|
|
*/
|
|
package org.alfresco.com.fileplancomponents;
|
|
|
|
/**
|
|
* FIXME: Document me :)
|
|
*
|
|
* @author Tuna Aksoy
|
|
* @since 1.0
|
|
*/
|
|
public class FilePlanComponentFields
|
|
{
|
|
public static final String NAME = "name";
|
|
public static final String NODE_TYPE = "nodeType";
|
|
public static final String PROPERTIES = "properties";
|
|
public static final String PROPERTIES_TITLE = "cm:title";
|
|
public static final String PROPERTIES_VITAL_RECORD_INDICATOR = "rma:vitalRecordIndicator";
|
|
public static final String PROPERTIES_HOLD_REASON = "rma:holdReason";
|
|
}
|