Class SignalDefinition
- java.lang.Object
-
- org.camunda.bpm.engine.impl.bpmn.parser.SignalDefinition
-
- All Implemented Interfaces:
Serializable
public class SignalDefinition extends Object implements Serializable
Represents a bpmn signal definition- Author:
- Daniel Meyer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
id
protected Expression
name
-
Constructor Summary
Constructors Constructor Description SignalDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Expression
getExpression()
String
getId()
String
getName()
void
setExpression(Expression name)
void
setId(String id)
-
-
-
Field Detail
-
id
protected String id
-
name
protected Expression name
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
getExpression
public Expression getExpression()
-
setExpression
public void setExpression(Expression name)
-
-