Class StepProperty

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

public class StepProperty extends Object implements Serializable
Step-property is a child element of master step containing key/value pairs for setting specific attributes of master steps. This information contains internally used properties that will change. These properties are suitable for use when copying master steps, but should not be manipulated.
Since:
2.25
See Also:
  • Field Details

    • name

      protected String name
      The name of the step property.
    • value

      protected String value
      The value of the step property.
  • Constructor Details

    • StepProperty

      public StepProperty()
      Constructs a new step property.
  • Method Details

    • getName

      public String getName()
      Gets the name of the step property.
      Returns:
      the property name.
    • setName

      public void setName(String name)
      Sets the name of the step property.
      Parameters:
      name - the property name.
    • getValue

      public String getValue()
      Gets the value of the step property.
      Returns:
      the property value.
    • setValue

      public void setValue(String value)
      Sets the value of the step property.
      Parameters:
      value - the property value.