Class CmmnSentryPart
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmmn.execution.CmmnSentryPart
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CaseSentryPartEntity
,CaseSentryPartImpl
public abstract class CmmnSentryPart extends Object implements Serializable
- Author:
- Roman Smirnov
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
satisfied
protected String
sentryId
protected String
source
protected String
standardEvent
protected String
type
protected String
variableEvent
protected String
variableName
-
Constructor Summary
Constructors Constructor Description CmmnSentryPart()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description abstract CmmnExecution
getCaseExecution()
abstract CmmnExecution
getCaseInstance()
String
getSentryId()
String
getSource()
abstract CmmnExecution
getSourceCaseExecution()
Deprecated.since 7.4 A new instance of a sentry does not reference the source case execution id anymore.abstract String
getSourceCaseExecutionId()
Deprecated.since 7.4 A new instance of a sentry does not reference the source case execution id anymore.String
getStandardEvent()
String
getType()
String
getVariableEvent()
String
getVariableName()
boolean
isSatisfied()
abstract void
setCaseExecution(CmmnExecution caseExecution)
abstract void
setCaseInstance(CmmnExecution caseInstance)
void
setSatisfied(boolean satisfied)
void
setSentryId(String sentryId)
void
setSource(String source)
abstract void
setSourceCaseExecution(CmmnExecution sourceCaseExecution)
Deprecated.since 7.4 A new instance of a sentry does not reference the source case execution id anymore.void
setStandardEvent(String standardEvent)
void
setType(String type)
void
setVariableEvent(String variableEvent)
void
setVariableName(String variableName)
-
-
-
Method Detail
-
getCaseInstance
public abstract CmmnExecution getCaseInstance()
-
setCaseInstance
public abstract void setCaseInstance(CmmnExecution caseInstance)
-
getCaseExecution
public abstract CmmnExecution getCaseExecution()
-
setCaseExecution
public abstract void setCaseExecution(CmmnExecution caseExecution)
-
getSentryId
public String getSentryId()
-
setSentryId
public void setSentryId(String sentryId)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getSource
public String getSource()
-
setSource
public void setSource(String source)
-
getSourceCaseExecutionId
public abstract String getSourceCaseExecutionId()
Deprecated.since 7.4 A new instance of a sentry does not reference the source case execution id anymore.
-
getSourceCaseExecution
public abstract CmmnExecution getSourceCaseExecution()
Deprecated.since 7.4 A new instance of a sentry does not reference the source case execution id anymore.
-
setSourceCaseExecution
public abstract void setSourceCaseExecution(CmmnExecution sourceCaseExecution)
Deprecated.since 7.4 A new instance of a sentry does not reference the source case execution id anymore.
-
getStandardEvent
public String getStandardEvent()
-
setStandardEvent
public void setStandardEvent(String standardEvent)
-
isSatisfied
public boolean isSatisfied()
-
setSatisfied
public void setSatisfied(boolean satisfied)
-
getVariableEvent
public String getVariableEvent()
-
setVariableEvent
public void setVariableEvent(String variableEvent)
-
getVariableName
public String getVariableName()
-
setVariableName
public void setVariableName(String variableName)
-
-