Class ProcessArchiveXmlImpl
- java.lang.Object
-
- org.camunda.bpm.application.impl.metadata.ProcessArchiveXmlImpl
-
- All Implemented Interfaces:
ProcessArchiveXml
public class ProcessArchiveXmlImpl extends Object implements ProcessArchiveXml
-
-
Field Summary
-
Fields inherited from interface org.camunda.bpm.application.impl.metadata.spi.ProcessArchiveXml
PROP_ADDITIONAL_RESOURCE_SUFFIXES, PROP_ADDITIONAL_RESOURCE_SUFFIXES_SEPARATOR, PROP_IS_DELETE_UPON_UNDEPLOY, PROP_IS_DEPLOY_CHANGED_ONLY, PROP_IS_RESUME_PREVIOUS_VERSIONS, PROP_IS_SCAN_FOR_PROCESS_DEFINITIONS, PROP_RESOURCE_ROOT_PATH, PROP_RESUME_PREVIOUS_BY
-
-
Constructor Summary
Constructors Constructor Description ProcessArchiveXmlImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringgetProcessEngineName()List<String>getProcessResourceNames()Map<String,String>getProperties()StringgetTenantId()voidsetName(String name)voidsetProcessEngineName(String processEngineName)voidsetProcessResourceNames(List<String> processResourceNames)voidsetProperties(Map<String,String> properties)voidsetTenantId(String tenantId)
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getNamein interfaceProcessArchiveXml- Returns:
- the name of the process archive. Must not be null.
-
setName
public void setName(String name)
-
getTenantId
public String getTenantId()
- Specified by:
getTenantIdin interfaceProcessArchiveXml- Returns:
- the id of the tenant the resources of the process archive should deploy for. Can be
null.
-
setTenantId
public void setTenantId(String tenantId)
-
getProcessEngineName
public String getProcessEngineName()
- Specified by:
getProcessEngineNamein interfaceProcessArchiveXml- Returns:
- the name of the process engine which the deployment should be made to. If null, the "default engine" is used.
-
setProcessEngineName
public void setProcessEngineName(String processEngineName)
-
getProcessResourceNames
public List<String> getProcessResourceNames()
- Specified by:
getProcessResourceNamesin interfaceProcessArchiveXml- Returns:
- a list of process definition resource names that make up the deployment.
-
getProperties
public Map<String,String> getProperties()
- Specified by:
getPropertiesin interfaceProcessArchiveXml- Returns:
- a list of additional properties. See constant property names defined in this class for a list of available properties.
- See Also:
ProcessArchiveXml.PROP_IS_DELETE_UPON_UNDEPLOY,ProcessArchiveXml.PROP_IS_SCAN_FOR_PROCESS_DEFINITIONS,ProcessArchiveXml.PROP_RESOURCE_ROOT_PATH,ProcessArchiveXml.PROP_IS_DEPLOY_CHANGED_ONLY
-
-