Package net.sf.basedb.core.data
Class BioPlateTypeData
- java.lang.Object
-
- net.sf.basedb.core.data.BasicData
-
- net.sf.basedb.core.data.BioPlateTypeData
-
- All Implemented Interfaces:
IdentifiableData
,NameableData
,RemovableData
public class BioPlateTypeData extends BasicData implements NameableData, RemovableData
This class holds information about a biomaterial plate type.- Since:
- 2.16
- Author:
- Nicklas
- See Also:
BioPlateType
, Developer documentation: Biomaterials LIMS- Last modified
- $Date: 2015-11-17 13:57:57 +0100 (ti, 17 nov 2015) $
- Hibernate: class
- table="`BioPlateTypes`" lazy="false"
-
-
Field Summary
Fields Modifier and Type Field Description private Integer
bioMaterialType
private Set<BioPlateData>
bioPlates
private String
description
private int
lockMode
private String
name
private Integer
removedBy
private ItemSubtypeData
storageType
private ItemSubtypeData
subtype
-
Fields inherited from interface net.sf.basedb.core.data.NameableData
MAX_DESCRIPTION_LENGTH, MAX_NAME_LENGTH
-
-
Constructor Summary
Constructors Constructor Description BioPlateTypeData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getBioMaterialType()
If set, plates using this type can only hold the specific biomaterial type (eg. samples, extracts or labeled extracts).(package private) Set<BioPlateData>
getBioPlates()
The bioplates that use this type.String
getDescription()
Get the description for the item.ItemSubtypeData
getItemSubtype()
Get the subtype of biomaterials that can be placed on plates of this type.int
getLockMode()
A flag indicating if plates with this type have locked wells or not. 0 = not locked; 1 = locked-after-move; 2 = locked-after-add; 3=locked-after-createString
getName()
Get the name of the item.Integer
getRemovedBy()
Get the ID of the user that removed this item.ItemSubtypeData
getStorageType()
Get the subtype of storage location where plates of this type are usually stored.void
setBioMaterialType(Integer bioMaterialType)
(package private) void
setBioPlates(Set<BioPlateData> bioPlates)
void
setDescription(String description)
Set the description for the item.void
setItemSubtype(ItemSubtypeData subtype)
void
setLockMode(int lockMode)
void
setName(String name)
Set the name of the item.void
setRemovedBy(Integer removedBy)
Set the ID of the user that removed this item or null to restore the item.void
setStorageType(ItemSubtypeData storageType)
-
Methods inherited from class net.sf.basedb.core.data.BasicData
equals, getId, getVersion, hashCode, setId, setVersion, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.basedb.core.data.IdentifiableData
getId, getVersion
-
-
-
-
Field Detail
-
name
private String name
-
description
private String description
-
removedBy
private Integer removedBy
-
bioMaterialType
private Integer bioMaterialType
-
subtype
private ItemSubtypeData subtype
-
storageType
private ItemSubtypeData storageType
-
lockMode
private int lockMode
-
bioPlates
private Set<BioPlateData> bioPlates
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:NameableData
Get the name of the item.- Specified by:
getName
in interfaceNameableData
- Returns:
- A
String
with the name of the item
-
setName
public void setName(String name)
Description copied from interface:NameableData
Set the name of the item. The name cannot be null and mustn't be longer than the value specified by theMAX_NAME_LENGTH
constant.- Specified by:
setName
in interfaceNameableData
- Parameters:
name
- The new name for the item
-
getDescription
public String getDescription()
Description copied from interface:NameableData
Get the description for the item.- Specified by:
getDescription
in interfaceNameableData
- Returns:
- A
String
with a description of the item
-
setDescription
public void setDescription(String description)
Description copied from interface:NameableData
Set the description for the item. The description can be null but mustn't be longer than the value specified by theMAX_DESCRIPTION_LENGTH
constant.- Specified by:
setDescription
in interfaceNameableData
- Parameters:
description
- The new description for the item
-
getRemovedBy
public Integer getRemovedBy()
Description copied from interface:RemovableData
Get the ID of the user that removed this item.- Specified by:
getRemovedBy
in interfaceRemovableData
- Returns:
- The ID of a user or null if the item is not removed
-
setRemovedBy
public void setRemovedBy(Integer removedBy)
Description copied from interface:RemovableData
Set the ID of the user that removed this item or null to restore the item.- Specified by:
setRemovedBy
in interfaceRemovableData
-
getBioMaterialType
public Integer getBioMaterialType()
If set, plates using this type can only hold the specific biomaterial type (eg. samples, extracts or labeled extracts).- Hibernate: property
- column="`biomaterial_type`" type="int" update="false"
-
setBioMaterialType
public void setBioMaterialType(Integer bioMaterialType)
-
getItemSubtype
public ItemSubtypeData getItemSubtype()
Get the subtype of biomaterials that can be placed on plates of this type.- Since:
- 3.0
- Hibernate: many-to-one
- column="`subtype_id`" not-null="false" outer-join="false"
-
setItemSubtype
public void setItemSubtype(ItemSubtypeData subtype)
-
getStorageType
public ItemSubtypeData getStorageType()
Get the subtype of storage location where plates of this type are usually stored. The storage type should be a subtype for hardware items.- Since:
- 3.2
- Hibernate: many-to-one
- column="`storagetype_id`" not-null="false" outer-join="false"
-
setStorageType
public void setStorageType(ItemSubtypeData storageType)
-
getLockMode
public int getLockMode()
A flag indicating if plates with this type have locked wells or not. 0 = not locked; 1 = locked-after-move; 2 = locked-after-add; 3=locked-after-create- Hibernate: property
- column="`lock_mode`" type="int" not-null="true"
-
setLockMode
public void setLockMode(int lockMode)
-
getBioPlates
Set<BioPlateData> getBioPlates()
The bioplates that use this type. This is the inverse end.- See Also:
BioPlateData.getBioPlateType()
- Hibernate: set
- lazy="true" inverse="true"
- Hibernate: collection-key
- column="`bioplatetype_id`"
- Hibernate: collection-one-to-many
- class="net.sf.basedb.core.data.BioPlateData"
-
setBioPlates
void setBioPlates(Set<BioPlateData> bioPlates)
-
-