Package net.pricefx.server.dto
Class ProductReferenceRecord
- Object
-
- ProductReferenceRecord
-
public class ProductReferenceRecord extends Object
A DTO that describes a product reference
-
-
Field Summary
Fields Modifier and Type Field Description StringitemTypedIdThe typedId of the target (=containing) object.StringlabelThe label of the target (=containing) object (e.g.ObjectlistIdThe ID of the target parent object.StringlistLabelLabel of target parent objectStringskuThe sku that reference is forStringtargetObjectTypeCodeType Code of target parent object.
-
Constructor Summary
Constructors Constructor Description ProductReferenceRecord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetItemTypedId()StringgetLabel()ObjectgetListId()StringgetListLabel()StringgetSku()StringgetTargetObjectTypeCode()voidsetItemTypedId(String itemTypedId)voidsetLabel(String label)voidsetListId(Object listId)voidsetListLabel(String listLabel)voidsetSku(String sku)voidsetTargetObjectTypeCode(Object targetObjectTypeCode)
-
-
-
Field Detail
-
sku
public String sku
The sku that reference is for
-
label
public String label
The label of the target (=containing) object (e.g. quote line item)
-
itemTypedId
public String itemTypedId
The typedId of the target (=containing) object. E.g. a quote line item
-
listId
public Object listId
The ID of the target parent object. E.g. a quote
-
targetObjectTypeCode
public String targetObjectTypeCode
Type Code of target parent object. E.g. "Q"
-
listLabel
public String listLabel
Label of target parent object
-
-
Method Detail
-
getSku
public String getSku()
-
setSku
public void setSku(String sku)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getItemTypedId
public String getItemTypedId()
-
setItemTypedId
public void setItemTypedId(String itemTypedId)
-
getListId
public Object getListId()
-
setListId
public void setListId(Object listId)
-
getTargetObjectTypeCode
public String getTargetObjectTypeCode()
-
setTargetObjectTypeCode
public void setTargetObjectTypeCode(Object targetObjectTypeCode)
-
getListLabel
public String getListLabel()
-
setListLabel
public void setListLabel(String listLabel)
-
-