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 Object implements ProcessApplicationInfo
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ProcessApplicationDeploymentInfo>
deploymentInfo
protected String
name
protected Map<String,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 List<ProcessApplicationDeploymentInfo>
getDeploymentInfo()
String
getName()
Map<String,String>
getProperties()
Provides access to a list of process application-provided properties.void
setDeploymentInfo(List<ProcessApplicationDeploymentInfo> deploymentInfo)
void
setName(String name)
void
setProperties(Map<String,String> properties)
-
-
-
Method Detail
-
getName
public String getName()
- Specified by:
getName
in interfaceProcessApplicationInfo
- Returns:
- the name of the process application
-
setName
public void setName(String name)
-
getDeploymentInfo
public List<ProcessApplicationDeploymentInfo> getDeploymentInfo()
- Specified by:
getDeploymentInfo
in interfaceProcessApplicationInfo
- Returns:
- a list of
ProcessApplicationDeploymentInfo
objects that provide information about the deployments made by the process application to the process engine(s).
-
setDeploymentInfo
public void setDeploymentInfo(List<ProcessApplicationDeploymentInfo> deploymentInfo)
-
getProperties
public Map<String,String> getProperties()
Description copied from interface:ProcessApplicationInfo
Provides access to a list of process application-provided properties.
This class provides a set of constants for commonly-used properties
- Specified by:
getProperties
in interfaceProcessApplicationInfo
- See Also:
ProcessApplicationInfo.PROP_SERVLET_CONTEXT_PATH
-
-