Class EppTrigger

java.lang.Object
com.genologics.ri.processtype.EppTrigger
All Implemented Interfaces:
Serializable

public class EppTrigger extends Object implements Serializable
EPP trigger configuration for the Master Step.
Since:
2.25
See Also:
  • Field Details

    • name

      protected String name
      The name of the EPP trigger.
    • type

      protected TriggerType type
      The type of the trigger (manual, automatic, or unused).
    • point

      protected TriggerPoint point
      The point at which the trigger executes (before or after).
    • status

      protected TriggerStatus status
      The status at which the trigger executes.
  • Constructor Details

    • EppTrigger

      public EppTrigger()
      Constructs a new EPP trigger.
    • EppTrigger

      public EppTrigger(String name)
      Constructs a new EPP trigger with the specified name.
      Parameters:
      name - the name of the EPP trigger.
  • Method Details

    • getName

      public String getName()
      Gets the name of the EPP trigger.
      Returns:
      the EPP trigger name.
    • setName

      public void setName(String name)
      Sets the name of the EPP trigger.
      Parameters:
      name - the EPP trigger name.
    • getType

      public TriggerType getType()
      Gets the type of the trigger.
      Returns:
      the trigger type.
    • setType

      public void setType(TriggerType type)
      Sets the type of the trigger.
      Parameters:
      type - the trigger type.
    • getPoint

      public TriggerPoint getPoint()
      Gets the point at which the trigger executes.
      Returns:
      the trigger point.
    • setPoint

      public void setPoint(TriggerPoint point)
      Sets the point at which the trigger executes.
      Parameters:
      point - the trigger point.
    • getStatus

      public TriggerStatus getStatus()
      Gets the status at which the trigger executes.
      Returns:
      the trigger status.
    • setStatus

      public void setStatus(TriggerStatus status)
      Sets the status at which the trigger executes.
      Parameters:
      status - the trigger status.