java.lang.Object
com.genologics.ri.processtype.EppTrigger
- All Implemented Interfaces:
Serializable
EPP trigger configuration for the Master Step.
- Since:
- 2.25
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected StringThe name of the EPP trigger.protected TriggerPointThe point at which the trigger executes (before or after).protected TriggerStatusThe status at which the trigger executes.protected TriggerTypeThe type of the trigger (manual, automatic, or unused). -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new EPP trigger.EppTrigger(String name) Constructs a new EPP trigger with the specified name. -
Method Summary
Modifier and TypeMethodDescriptiongetName()Gets the name of the EPP trigger.getPoint()Gets the point at which the trigger executes.Gets the status at which the trigger executes.getType()Gets the type of the trigger.voidSets the name of the EPP trigger.voidsetPoint(TriggerPoint point) Sets the point at which the trigger executes.voidsetStatus(TriggerStatus status) Sets the status at which the trigger executes.voidsetType(TriggerType type) Sets the type of the trigger.
-
Field Details
-
name
The name of the EPP trigger. -
type
The type of the trigger (manual, automatic, or unused). -
point
The point at which the trigger executes (before or after). -
status
The status at which the trigger executes.
-
-
Constructor Details
-
EppTrigger
public EppTrigger()Constructs a new EPP trigger. -
EppTrigger
Constructs a new EPP trigger with the specified name.- Parameters:
name- the name of the EPP trigger.
-
-
Method Details
-
getName
Gets the name of the EPP trigger.- Returns:
- the EPP trigger name.
-
setName
Sets the name of the EPP trigger.- Parameters:
name- the EPP trigger name.
-
getType
Gets the type of the trigger.- Returns:
- the trigger type.
-
setType
Sets the type of the trigger.- Parameters:
type- the trigger type.
-
getPoint
Gets the point at which the trigger executes.- Returns:
- the trigger point.
-
setPoint
Sets the point at which the trigger executes.- Parameters:
point- the trigger point.
-
getStatus
Gets the status at which the trigger executes.- Returns:
- the trigger status.
-
setStatus
Sets the status at which the trigger executes.- Parameters:
status- the trigger status.
-