Class ReagentKit

java.lang.Object
com.genologics.ri.reagentkit.ReagentKit
All Implemented Interfaces:
Linkable<ReagentKit>, Locatable, Serializable

public class ReagentKit extends Object implements Linkable<ReagentKit>, Serializable
The detailed representation of a reagent kit.
Since:
2.18
See Also:
  • Field Details

    • name

      protected String name
      The name of the reagent kit.
    • supplier

      protected String supplier
      The supplier of the reagent kit.
    • catalogueNumber

      protected String catalogueNumber
      The catalogue number of the reagent kit.
    • website

      protected String website
      The website of the reagent kit.
    • archived

      protected Boolean archived
      Whether the reagent kit is archived.
    • uri

      protected URI uri
      The URI of the reagent kit.
  • Constructor Details

    • ReagentKit

      public ReagentKit()
      Default constructor.
    • ReagentKit

      public ReagentKit(URI uri)
      Constructor with URI.
      Parameters:
      uri - The URI of the reagent kit.
    • ReagentKit

      public ReagentKit(URI uri, String name)
      Constructor with URI and name.
      Parameters:
      uri - The URI of the reagent kit.
      name - The name of the reagent kit.
  • Method Details

    • getName

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

      public void setName(String name)
      Sets the name of the reagent kit.
      Parameters:
      name - The reagent kit name.
    • getSupplier

      public String getSupplier()
      Gets the supplier of the reagent kit.
      Returns:
      The supplier name.
    • setSupplier

      public void setSupplier(String supplier)
      Sets the supplier of the reagent kit.
      Parameters:
      supplier - The supplier name.
    • getCatalogueNumber

      public String getCatalogueNumber()
      Gets the catalogue number of the reagent kit.
      Returns:
      The catalogue number.
    • setCatalogueNumber

      public void setCatalogueNumber(String catalogueNumber)
      Sets the catalogue number of the reagent kit.
      Parameters:
      catalogueNumber - The catalogue number.
    • getWebsite

      public String getWebsite()
      Gets the website of the reagent kit.
      Returns:
      The website URL.
    • setWebsite

      public void setWebsite(String website)
      Sets the website of the reagent kit.
      Parameters:
      website - The website URL.
    • getArchived

      public Boolean getArchived()
      Gets whether the reagent kit is archived.
      Returns:
      True if archived, false otherwise.
    • setArchived

      public void setArchived(Boolean archived)
      Sets whether the reagent kit is archived.
      Parameters:
      archived - True if archived, false otherwise.
    • getUri

      public URI getUri()
      Gets the URI of the reagent kit.
      Specified by:
      getUri in interface Locatable
      Returns:
      The reagent kit URI.
    • setUri

      public void setUri(URI uri)
      Sets the URI of the reagent kit.
      Specified by:
      setUri in interface Locatable
      Parameters:
      uri - The reagent kit URI.
    • getLink

      public LimsLink<ReagentKit> getLink()
      Get a concrete link object to this Linkable thing.
      Specified by:
      getLink in interface Linkable<ReagentKit>
      Returns:
      A LimsLink to this object.