Class ProcessTypeAttribute

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

public class ProcessTypeAttribute extends Object implements Serializable
Process-type-attributes is a child element of process type containing key/value pairs for setting specific attributes that can be set for process types. This information contains internally used parameters that will change. These parameters are suitable for use when copying process types, but should not be manipulated.
See Also:
  • Field Details

    • value

      protected String value
      The value of the attribute.
    • name

      protected String name
      The name of the attribute.
  • Constructor Details

    • ProcessTypeAttribute

      public ProcessTypeAttribute()
      Constructs a new process type attribute.
    • ProcessTypeAttribute

      public ProcessTypeAttribute(String name)
      Constructs a new process type attribute with the specified name.
      Parameters:
      name - the name of the attribute.
    • ProcessTypeAttribute

      public ProcessTypeAttribute(String name, String value)
      Constructs a new process type attribute with the specified name and value.
      Parameters:
      name - the name of the attribute.
      value - the value of the attribute.
  • Method Details

    • getValue

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

      public void setValue(String value)
      Sets the value of the attribute.
      Parameters:
      value - the attribute value.
    • getName

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

      public void setName(String name)
      Sets the name of the attribute.
      Parameters:
      name - the attribute name.