Package net.sf.basedb.core.data
Class SoftwareData
-
- All Implemented Interfaces:
AnnotatableData
,IdentifiableData
,LoggableData
,NameableData
,OwnableData
,RegisteredData
,RemovableData
,ShareableData
,SubtypableData
public class SoftwareData extends AnnotatedData implements RegisteredData, SubtypableData
This class holds information about a software.- Version:
- 2.0
- Author:
- enell
- See Also:
Software
, Developer documentation: Protocols, hardware and software- Last modified
- $Date: 2013-10-16 16:39:55 +0200 (on, 16 okt 2013) $
- Hibernate: class
- table="`Software`" lazy="true"
-
-
Field Summary
Fields Modifier and Type Field Description private Date
entryDate
static int
MAX_VERSIONSTRING_LENGTH
private ItemSubtypeData
subtype
private String
versionString
-
Fields inherited from interface net.sf.basedb.core.data.NameableData
MAX_DESCRIPTION_LENGTH, MAX_NAME_LENGTH
-
-
Constructor Summary
Constructors Constructor Description SoftwareData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Date
getEntryDate()
Get the date this item was added to the database.ItemSubtypeData
getItemSubtype()
Get the subtype of the item.String
getVersionString()
void
setEntryDate(Date entryDate)
void
setItemSubtype(ItemSubtypeData subtype)
Set the subtype of the item.void
setVersionString(String versionString)
-
Methods inherited from class net.sf.basedb.core.data.AnnotatedData
getAnnotations, getAnnotationSet, setAnnotations, setAnnotationSet
-
Methods inherited from class net.sf.basedb.core.data.CommonData
getDescription, getName, getRemovedBy, setDescription, setName, setRemovedBy
-
Methods inherited from class net.sf.basedb.core.data.SharedData
getItemKey, getProjectKey, setItemKey, setProjectKey
-
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
-
Methods inherited from interface net.sf.basedb.core.data.OwnableData
getOwner, setOwner
-
-
-
-
Field Detail
-
entryDate
private Date entryDate
-
subtype
private ItemSubtypeData subtype
-
MAX_VERSIONSTRING_LENGTH
public static final int MAX_VERSIONSTRING_LENGTH
- See Also:
- Constant Field Values
-
versionString
private String versionString
-
-
Method Detail
-
getEntryDate
public Date getEntryDate()
Description copied from interface:RegisteredData
Get the date this item was added to the database. The value is generated at creation time and can't be modified later.- Specified by:
getEntryDate
in interfaceRegisteredData
-
setEntryDate
public void setEntryDate(Date entryDate)
-
getItemSubtype
public ItemSubtypeData getItemSubtype()
Description copied from interface:SubtypableData
Get the subtype of the item.- Specified by:
getItemSubtype
in interfaceSubtypableData
-
setItemSubtype
public void setItemSubtype(ItemSubtypeData subtype)
Description copied from interface:SubtypableData
Set the subtype of the item.- Specified by:
setItemSubtype
in interfaceSubtypableData
-
getVersionString
public String getVersionString()
- Hibernate: property
- column="`version_string`" type="string" length="255" not-null="false"
-
setVersionString
public void setVersionString(String versionString)
-
-