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 String
itemTypedId
The typedId of the target (=containing) object.String
label
The label of the target (=containing) object (e.g.Object
listId
The ID of the target parent object.String
listLabel
Label of target parent objectString
sku
The sku that reference is forString
targetObjectTypeCode
Type Code of target parent object.
-
Constructor Summary
Constructors Constructor Description ProductReferenceRecord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getItemTypedId()
String
getLabel()
Object
getListId()
String
getListLabel()
String
getSku()
String
getTargetObjectTypeCode()
void
setItemTypedId(String itemTypedId)
void
setLabel(String label)
void
setListId(Object listId)
void
setListLabel(String listLabel)
void
setSku(String sku)
void
setTargetObjectTypeCode(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)
-
-