mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
A pair of aspect definitions for tagging XForms templates and
related transformers. Should be enough to get rid of current configuration file. Minor checkpoint of WCM workflow work. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4011 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
26
source/java/org/alfresco/model/WCMModel.java
Normal file
26
source/java/org/alfresco/model/WCMModel.java
Normal file
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
*
|
||||
*/
|
||||
package org.alfresco.model;
|
||||
|
||||
import org.alfresco.service.namespace.QName;
|
||||
|
||||
/**
|
||||
* QName definitions for WCM.
|
||||
* @author britt
|
||||
*/
|
||||
public interface WCMModel
|
||||
{
|
||||
public static final String WCM_MODEL_URI = "http://www.alfresco.org/model/wcmmodel/1.0";
|
||||
public static final String WCM_MODEL_PREFIX = "wcm";
|
||||
|
||||
// The XForms data capture template aspect.
|
||||
public static final QName ASPECT_TEMPLATE = QName.createQName(WCM_MODEL_URI, "template");
|
||||
public static final QName PROP_ROOT_TAG_NAME = QName.createQName(WCM_MODEL_URI, "roottagname");
|
||||
public static final QName ASSOC_TEMPLATE_OUTPUT_METHODS = QName.createQName(WCM_MODEL_URI, "templateoutputmethods");
|
||||
|
||||
// An XML to something else tranformer aspect.
|
||||
public static final QName ASPECT_TEMPLATE_OUTPUT_METHOD = QName.createQName(WCM_MODEL_URI, "templateoutputmethod");
|
||||
public static final QName PROP_OUTPUT_TYPE = QName.createQName(WCM_MODEL_URI, "outputtype");
|
||||
public static final QName PROP_TEMPLATE_SOURCE = QName.createQName(WCM_MODEL_URI, "templatesource");
|
||||
}
|
Reference in New Issue
Block a user