Class AvailableProgram

java.lang.Object
com.genologics.ri.step.AvailableProgram
All Implemented Interfaces:
Serializable

public class AvailableProgram extends Object implements Serializable
Identifies a program that is available for a step.
Since:
2.18
See Also:
  • Field Details

    • uri

      protected URI uri
      URI of the available program.
    • name

      protected String name
      Name of the available program.
  • Constructor Details

    • AvailableProgram

      public AvailableProgram()
      Default constructor.
    • AvailableProgram

      public AvailableProgram(URI uri)
      Constructor with URI.
      Parameters:
      uri - The URI of the available program.
    • AvailableProgram

      public AvailableProgram(URI uri, String name)
      Constructor with URI and name.
      Parameters:
      uri - The URI of the available program.
      name - The name of the available program.
  • Method Details

    • getUri

      public URI getUri()
      Gets the URI.
      Returns:
      The URI.
    • setUri

      public void setUri(URI uri)
      Sets the URI.
      Parameters:
      uri - The URI.
    • getName

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

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