Class CisLineItem
- java.lang.Object
-
- com.hybris.cis.client.shared.models.CisLineItem
-
- Direct Known Subclasses:
CisFraudLineItem
public class CisLineItem extends java.lang.ObjectA line item.
-
-
Constructor Summary
Constructors Constructor Description CisLineItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.IntegergetId()Gets the item no.java.lang.StringgetItemCode()java.lang.StringgetProductDescription()java.lang.IntegergetQuantity()Gets the quantity.java.lang.StringgetTaxCode()java.math.BigDecimalgetUnitPrice()Gets the unit price.AnnotationHashMapgetVendorParameters()voidsetId(java.lang.Integer id)Sets the item no.voidsetItemCode(java.lang.String itemCode)voidsetProductDescription(java.lang.String productDescription)voidsetQuantity(java.lang.Integer quantity)Sets the quantity.voidsetTaxCode(java.lang.String taxCode)voidsetUnitPrice(java.math.BigDecimal total)Sets the unit price.voidsetVendorParameters(AnnotationHashMap vendorParameters)
-
-
-
Method Detail
-
getProductDescription
public java.lang.String getProductDescription()
-
setProductDescription
public void setProductDescription(java.lang.String productDescription)
-
getQuantity
public java.lang.Integer getQuantity()
Gets the quantity.- Returns:
- the quantity
-
setQuantity
public void setQuantity(java.lang.Integer quantity)
Sets the quantity.- Parameters:
quantity- the quantity to set
-
getId
public java.lang.Integer getId()
Gets the item no.- Returns:
- the itemNo
-
setId
public void setId(java.lang.Integer id)
Sets the item no.- Parameters:
id- the itemNo to set
-
getUnitPrice
public java.math.BigDecimal getUnitPrice()
Gets the unit price.- Returns:
- the total
-
setUnitPrice
public void setUnitPrice(java.math.BigDecimal total)
Sets the unit price.- Parameters:
total- the total to set
-
getItemCode
public java.lang.String getItemCode()
-
setItemCode
public void setItemCode(java.lang.String itemCode)
-
getTaxCode
public java.lang.String getTaxCode()
-
setTaxCode
public void setTaxCode(java.lang.String taxCode)
-
getVendorParameters
public AnnotationHashMap getVendorParameters()
-
setVendorParameters
public void setVendorParameters(AnnotationHashMap vendorParameters)
-
-