Package org.camunda.bpm.engine.impl
Class ProcessEngineInfoImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.ProcessEngineInfoImpl
-
- All Implemented Interfaces:
Serializable
,ProcessEngineInfo
public class ProcessEngineInfoImpl extends Object implements Serializable, ProcessEngineInfo
- Author:
- Tom Baeyens
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessEngineInfoImpl(String name, String resourceUrl, String exception)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getException()
Returns the exception stacktrace in case an exception occurred while initializing the engine.String
getName()
Returns the name of the process engine.String
getResourceUrl()
Returns the resources the engine was configured from.
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:ProcessEngineInfo
Returns the name of the process engine.- Specified by:
getName
in interfaceProcessEngineInfo
-
getResourceUrl
public String getResourceUrl()
Description copied from interface:ProcessEngineInfo
Returns the resources the engine was configured from.- Specified by:
getResourceUrl
in interfaceProcessEngineInfo
-
getException
public String getException()
Description copied from interface:ProcessEngineInfo
Returns the exception stacktrace in case an exception occurred while initializing the engine. When no exception occured, null is returned.- Specified by:
getException
in interfaceProcessEngineInfo
-
-