Class ProtocolProperty

java.lang.Object
com.genologics.ri.protocolconfiguration.ProtocolProperty
All Implemented Interfaces:
Serializable

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

    • name

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

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

    • ProtocolProperty

      public ProtocolProperty()
      Default constructor.
    • ProtocolProperty

      public ProtocolProperty(String name, String value)
      Constructor with name and value.
      Parameters:
      name - The name of the protocol property.
      value - The value of the protocol property.
  • Method Details

    • getName

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

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

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

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