Package org.camunda.bpm.application.impl
Class ProcessApplicationInfoImpl
- java.lang.Object
-
- org.camunda.bpm.application.impl.ProcessApplicationInfoImpl
-
- All Implemented Interfaces:
ProcessApplicationInfo
public class ProcessApplicationInfoImpl extends java.lang.Object implements ProcessApplicationInfo
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<ProcessApplicationDeploymentInfo>deploymentInfoprotected java.lang.Stringnameprotected java.util.Map<java.lang.String,java.lang.String>properties-
Fields inherited from interface org.camunda.bpm.application.ProcessApplicationInfo
PROP_SERVLET_CONTEXT_PATH
-
-
Constructor Summary
Constructors Constructor Description ProcessApplicationInfoImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ProcessApplicationDeploymentInfo>getDeploymentInfo()java.lang.StringgetName()java.util.Map<java.lang.String,java.lang.String>getProperties()Provides access to a list of process application-provided properties.voidsetDeploymentInfo(java.util.List<ProcessApplicationDeploymentInfo> deploymentInfo)voidsetName(java.lang.String name)voidsetProperties(java.util.Map<java.lang.String,java.lang.String> properties)
-
-
-
Field Detail
-
name
protected java.lang.String name
-
deploymentInfo
protected java.util.List<ProcessApplicationDeploymentInfo> deploymentInfo
-
properties
protected java.util.Map<java.lang.String,java.lang.String> properties
-
-
Method Detail
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceProcessApplicationInfo- Returns:
- the name of the process application
-
setName
public void setName(java.lang.String name)
-
getDeploymentInfo
public java.util.List<ProcessApplicationDeploymentInfo> getDeploymentInfo()
- Specified by:
getDeploymentInfoin interfaceProcessApplicationInfo- Returns:
- a list of
ProcessApplicationDeploymentInfoobjects that provide information about the deployments made by the process application to the process engine(s).
-
setDeploymentInfo
public void setDeploymentInfo(java.util.List<ProcessApplicationDeploymentInfo> deploymentInfo)
-
getProperties
public java.util.Map<java.lang.String,java.lang.String> getProperties()
Description copied from interface:ProcessApplicationInfoProvides access to a list of process application-provided properties.
This class provides a set of constants for commonly-used properties
- Specified by:
getPropertiesin interfaceProcessApplicationInfo- See Also:
ProcessApplicationInfo.PROP_SERVLET_CONTEXT_PATH
-
setProperties
public void setProperties(java.util.Map<java.lang.String,java.lang.String> properties)
-
-