Class CmmnSentryDeclaration
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmmn.model.CmmnSentryDeclaration
-
- All Implemented Interfaces:
Serializable
public class CmmnSentryDeclaration extends Object implements Serializable
- Author:
- Roman Smirnov
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
id
static String
IF_PART
protected CmmnIfPartDeclaration
ifPart
protected Map<String,List<CmmnOnPartDeclaration>>
onPartMap
protected List<CmmnOnPartDeclaration>
onParts
static String
PLAN_ITEM_ON_PART
static String
VARIABLE_ON_PART
protected List<CmmnVariableOnPartDeclaration>
variableOnParts
-
Constructor Summary
Constructors Constructor Description CmmnSentryDeclaration(String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addOnPart(CmmnOnPartDeclaration onPart)
void
addVariableOnParts(CmmnVariableOnPartDeclaration variableOnPartDeclaration)
String
getId()
CmmnIfPartDeclaration
getIfPart()
List<CmmnOnPartDeclaration>
getOnParts()
List<CmmnOnPartDeclaration>
getOnParts(String sourceId)
List<CmmnVariableOnPartDeclaration>
getVariableOnParts()
boolean
hasVariableOnPart(String variableEventName, String variableName)
void
setId(String id)
void
setIfPart(CmmnIfPartDeclaration ifPart)
-
-
-
Field Detail
-
PLAN_ITEM_ON_PART
public static final String PLAN_ITEM_ON_PART
- See Also:
- Constant Field Values
-
IF_PART
public static final String IF_PART
- See Also:
- Constant Field Values
-
VARIABLE_ON_PART
public static final String VARIABLE_ON_PART
- See Also:
- Constant Field Values
-
id
protected String id
-
onPartMap
protected Map<String,List<CmmnOnPartDeclaration>> onPartMap
-
onParts
protected List<CmmnOnPartDeclaration> onParts
-
variableOnParts
protected List<CmmnVariableOnPartDeclaration> variableOnParts
-
ifPart
protected CmmnIfPartDeclaration ifPart
-
-
Constructor Detail
-
CmmnSentryDeclaration
public CmmnSentryDeclaration(String id)
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getOnParts
public List<CmmnOnPartDeclaration> getOnParts()
-
getOnParts
public List<CmmnOnPartDeclaration> getOnParts(String sourceId)
-
addOnPart
public void addOnPart(CmmnOnPartDeclaration onPart)
-
addVariableOnParts
public void addVariableOnParts(CmmnVariableOnPartDeclaration variableOnPartDeclaration)
-
getVariableOnParts
public List<CmmnVariableOnPartDeclaration> getVariableOnParts()
-
getIfPart
public CmmnIfPartDeclaration getIfPart()
-
setIfPart
public void setIfPart(CmmnIfPartDeclaration ifPart)
-
-