Class WorkflowEngine
- java.lang.Object
-
- com.adobe.cq.testing.client.workflow.WorkflowEngine
-
public class WorkflowEngine extends Object
Simple helper class to get all available infos return from the workflow engine. The class is initialised by a call toWorkflowClient.getWorkflowEngineInfo(int...)
.
-
-
Field Summary
Fields Modifier and Type Field Description static String
COMPONENT_ID
The id given to the workflow componentstatic String
COMPONENT_NAME
The name of hte OSGi Component that implements this servicestatic String
SERVICE_DESCR
Description of the workflow servicestatic String
SERVICE_PID
The process id of the workflow engine servicestatic String
SERVICE_VENDOR
Name of the Vendor for this workflow servicestatic String
STATE
Property that contains the state of the workflow engine.
-
Constructor Summary
Constructors Constructor Description WorkflowEngine(Map<String,String> prop)
Teh only constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getAllProperties()
returns list of all properties.String
getProperty(String propName)
returns the value of an engine property or null if not defined.
-
-
-
Field Detail
-
STATE
public static final String STATE
Property that contains the state of the workflow engine. The possible states equal the OSGi Service states: "ACTIVE", "ACTIVATING","DEACTIVATING","DESTROYED","DISABLED","ENABLED","REGISTERED","UNSATISFIED"- See Also:
- Constant Field Values
-
SERVICE_VENDOR
public static final String SERVICE_VENDOR
Name of the Vendor for this workflow service- See Also:
- Constant Field Values
-
SERVICE_PID
public static final String SERVICE_PID
The process id of the workflow engine service- See Also:
- Constant Field Values
-
SERVICE_DESCR
public static final String SERVICE_DESCR
Description of the workflow service- See Also:
- Constant Field Values
-
COMPONENT_NAME
public static final String COMPONENT_NAME
The name of hte OSGi Component that implements this service- See Also:
- Constant Field Values
-
COMPONENT_ID
public static final String COMPONENT_ID
The id given to the workflow component- See Also:
- Constant Field Values
-
-