java.lang.Object
com.genologics.ri.reagentkit.ReagentKit
- All Implemented Interfaces:
Linkable<ReagentKit>,Locatable,Serializable
The detailed representation of a reagent kit.
- Since:
- 2.18
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected BooleanWhether the reagent kit is archived.protected StringThe catalogue number of the reagent kit.protected StringThe name of the reagent kit.protected StringThe supplier of the reagent kit.protected URIThe URI of the reagent kit.protected StringThe website of the reagent kit. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.ReagentKit(URI uri) Constructor with URI.ReagentKit(URI uri, String name) Constructor with URI and name. -
Method Summary
Modifier and TypeMethodDescriptionGets whether the reagent kit is archived.Gets the catalogue number of the reagent kit.getLink()Get a concrete link object to thisLinkablething.getName()Gets the name of the reagent kit.Gets the supplier of the reagent kit.getUri()Gets the URI of the reagent kit.Gets the website of the reagent kit.voidsetArchived(Boolean archived) Sets whether the reagent kit is archived.voidsetCatalogueNumber(String catalogueNumber) Sets the catalogue number of the reagent kit.voidSets the name of the reagent kit.voidsetSupplier(String supplier) Sets the supplier of the reagent kit.voidSets the URI of the reagent kit.voidsetWebsite(String website) Sets the website of the reagent kit.
-
Field Details
-
name
The name of the reagent kit. -
supplier
The supplier of the reagent kit. -
catalogueNumber
The catalogue number of the reagent kit. -
website
The website of the reagent kit. -
archived
Whether the reagent kit is archived. -
uri
The URI of the reagent kit.
-
-
Constructor Details
-
ReagentKit
public ReagentKit()Default constructor. -
ReagentKit
Constructor with URI.- Parameters:
uri- The URI of the reagent kit.
-
ReagentKit
Constructor with URI and name.- Parameters:
uri- The URI of the reagent kit.name- The name of the reagent kit.
-
-
Method Details
-
getName
Gets the name of the reagent kit.- Returns:
- The reagent kit name.
-
setName
Sets the name of the reagent kit.- Parameters:
name- The reagent kit name.
-
getSupplier
Gets the supplier of the reagent kit.- Returns:
- The supplier name.
-
setSupplier
Sets the supplier of the reagent kit.- Parameters:
supplier- The supplier name.
-
getCatalogueNumber
Gets the catalogue number of the reagent kit.- Returns:
- The catalogue number.
-
setCatalogueNumber
Sets the catalogue number of the reagent kit.- Parameters:
catalogueNumber- The catalogue number.
-
getWebsite
Gets the website of the reagent kit.- Returns:
- The website URL.
-
setWebsite
Sets the website of the reagent kit.- Parameters:
website- The website URL.
-
getArchived
Gets whether the reagent kit is archived.- Returns:
- True if archived, false otherwise.
-
setArchived
Sets whether the reagent kit is archived.- Parameters:
archived- True if archived, false otherwise.
-
getUri
Gets the URI of the reagent kit. -
setUri
Sets the URI of the reagent kit. -
getLink
Get a concrete link object to thisLinkablething.- Specified by:
getLinkin interfaceLinkable<ReagentKit>- Returns:
- A
LimsLinkto this object.
-