com.beasys.commerce.ebusiness.order
Interface OrderLine

All Superinterfaces
Belonging, BusinessSmartComponent, Cloneable, Comparable, Serializable
All Known Implementing Classes:
OrderLineImpl

public interface OrderLine
extends Belonging

OrderLine represents one line in an Order. It contains a reference to an Item, a Quantity, a unitPrice and a list of Adjustments to the total line price. Attribute: quantity

Attribute: tax Attribute: unitPrice Attribute: totalLineAmount Attribute: shipping Attribute: productIdentifier

See Also
OrderLineHome, OrderLineImpl

Method Summary
 ArrayList getAdjustmentPresentations()
          Get the list of OrderAdjustmentPresentation objects
 String getDescription()
          Get the value of description
 long getId()
          Get order line id
 Money getLineTotal(int totalType)
          Gets the line total for the given total type
 Money getMsrp()
          Get the value of msrp
 String getProductIdentifier()
          Get the value of productIdentifier
 double getQuantity()
          Get the value of quantity
 Money getShipping()
          Get the value of shipping
 Money getTax()
          Get the value of tax
 double getTotalLineAmount()
          Get the value of quantity
 Money getUnitPrice()
          Get the value of unitPrice
 void setAdjustmentPresentations(ArrayList adjustmentPresentations)
          Set the list of OrderAdjustmentPresentation object
 void setDescription(String description)
          Set the value of description
 void setId(long id)
          Set the order line id
 void setMsrp(Money msrp)
          Set the value of msrp
 void setProductIdentifier(String productIdentifier)
          Set the value of productIdentifier
 void setQuantity(double quantity)
          Set the value of quantity
 void setShipping(Money shipping)
          Set the value of shipping
 void setTax(Money tax)
          Set the value of tax
 void setTotalLineAmount(double totalLineAmount)
          Set the value of quantity
 void setUnitPrice(Money unitPrice)
          Set the value of unitPrice
 
Methods inherited from interface com.beasys.commerce.foundation.Belonging
clone, equals, interfaceName, setByValue, value
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getQuantity

double getQuantity()
Get the value of quantity

Returns
quantity.

setQuantity

void setQuantity(double quantity)
Set the value of quantity

Parameters
quantity - quantity to be added

getTotalLineAmount

double getTotalLineAmount()
Get the value of quantity

Returns
totalLineAmount.

setTotalLineAmount

void setTotalLineAmount(double totalLineAmount)
Set the value of quantity

Parameters
totalLineAmount - quantity to be added

getTax

Money getTax()
Get the value of tax

Returns
tax.

setTax

void setTax(Money tax)
Set the value of tax

Parameters
tax - tax to be added

getUnitPrice

Money getUnitPrice()
Get the value of unitPrice

Returns
unitPrice.

setUnitPrice

void setUnitPrice(Money unitPrice)
Set the value of unitPrice

Parameters
unitPrice - unitPrice to be added

getShipping

Money getShipping()
Get the value of shipping

Returns
shipping.

setShipping

void setShipping(Money shipping)
Set the value of shipping

Parameters
shipping - shipping to be added

getProductIdentifier

String getProductIdentifier()
Get the value of productIdentifier

Returns
productIdentifier.

setProductIdentifier

void setProductIdentifier(String productIdentifier)
Set the value of productIdentifier

Parameters
productIdentifier - productIdentifier to be added

getMsrp

Money getMsrp()
Get the value of msrp

Returns
msrp.

setMsrp

void setMsrp(Money msrp)
Set the value of msrp

Parameters
msrp - msrp to be added

getDescription

String getDescription()
Get the value of description

Returns
description.

setDescription

void setDescription(String description)
Set the value of description

Parameters
description - description to be added

getAdjustmentPresentations

ArrayList getAdjustmentPresentations()
Get the list of OrderAdjustmentPresentation objects

Returns
an array list

setAdjustmentPresentations

void setAdjustmentPresentations(ArrayList adjustmentPresentations)
Set the list of OrderAdjustmentPresentation object

Parameters
adjustments, - the list of OrderDiscountPresentations

getId

long getId()
Get order line id

Returns
an array list

setId

void setId(long id)
Set the order line id

Parameters
id, - the long order line id.

getLineTotal

Money getLineTotal(int totalType)
                   throws InvalidArgumentException
Gets the line total for the given total type

Parameters
total - type
Throws
InvalidArgumentException


Copyright © 2006 BEA Systems, Inc. All Rights Reserved