Package com.sgs.common.database
Class LabelFormatSetLink
- java.lang.Object
-
- com.sgs.common.database.HibernateObject
-
- com.sgs.common.database.LabelFormatSetLink
-
public class LabelFormatSetLink extends HibernateObject
This class presents the link between LabelFormatSets and the label data This is where a label is defined with a set, type and the label data itself- Author:
- SGSystems
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Integer
custom
A boolean indicator to declare whether this is a custom label or not (outside of standard system scope)byte[]
data
The bytes which make up the labelLabelFormatSet
formatSet
The label format setLabelFormatType
formatType
The label format type-
Fields inherited from class com.sgs.common.database.HibernateObject
ID
-
-
Constructor Summary
Constructors Constructor Description LabelFormatSetLink()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Integer
getCustom()
byte[]
getData()
LabelFormatSet
getFormatSet()
LabelFormatType
getFormatType()
void
setCustom(java.lang.Integer custom)
void
setData(byte[] data)
void
setFormatSet(LabelFormatSet formatSet)
void
setFormatType(LabelFormatType formatType)
-
Methods inherited from class com.sgs.common.database.HibernateObject
getExported, getID, isDontSave, isModified, setDontSave, setExported, setID, setModified
-
-
-
-
Field Detail
-
formatSet
public LabelFormatSet formatSet
The label format set
-
formatType
public LabelFormatType formatType
The label format type
-
data
public byte[] data
The bytes which make up the label
-
custom
public java.lang.Integer custom
A boolean indicator to declare whether this is a custom label or not (outside of standard system scope)
-
-
Method Detail
-
getFormatType
public LabelFormatType getFormatType()
-
getData
public byte[] getData()
-
setFormatType
public void setFormatType(LabelFormatType formatType)
-
setData
public void setData(byte[] data)
-
getFormatSet
public LabelFormatSet getFormatSet()
-
setFormatSet
public void setFormatSet(LabelFormatSet formatSet)
-
getCustom
public java.lang.Integer getCustom()
-
setCustom
public void setCustom(java.lang.Integer custom)
-
-