Package org.camunda.bpm.application
Interface ProcessApplicationInfo
-
- All Known Implementing Classes:
ProcessApplicationInfoImpl
public interface ProcessApplicationInfoObject holding information about a deployed Process Application
- Author:
- Daniel Meyer
- See Also:
ProcessApplicationService.getProcessApplicationInfo(String)
-
-
Field Summary
Fields Modifier and Type Field Description static StringPROP_SERVLET_CONTEXT_PATHconstant for the servlet context path property
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ProcessApplicationDeploymentInfo>getDeploymentInfo()StringgetName()Map<String,String>getProperties()Provides access to a list of process application-provided properties.
-
-
-
Field Detail
-
PROP_SERVLET_CONTEXT_PATH
static final String PROP_SERVLET_CONTEXT_PATH
constant for the servlet context path property- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
- Returns:
- the name of the process application
-
getDeploymentInfo
List<ProcessApplicationDeploymentInfo> getDeploymentInfo()
- Returns:
- a list of
ProcessApplicationDeploymentInfoobjects that provide information about the deployments made by the process application to the process engine(s).
-
getProperties
Map<String,String> getProperties()
Provides access to a list of process application-provided properties.
This class provides a set of constants for commonly-used properties
- See Also:
PROP_SERVLET_CONTEXT_PATH
-
-