com.ibm.retail.saf.provider
Interface PriceInfo

All Superinterfaces:
POSInfo, java.io.Serializable
All Known Implementing Classes:
DefaultPriceInfo

public interface PriceInfo
extends POSInfo

Contains price information about an item in the point-of-sale system.


Method Summary
 java.lang.String getItemDescription()
          Get the item description.
 com.ibm.retail.saf.provider.ItemIdentifier getItemIdentifier()
          Get the item identifier.
 java.lang.String getRegularPrice()
          Get the item price.
 void setItemDescription(java.lang.String desc)
          Set the item description.
 void setItemIdentifier(com.ibm.retail.saf.provider.ItemIdentifier itemID)
          Set the item identifier.
 void setRegularPrice(java.lang.String regPrice)
          Set the item price.
 
Methods inherited from interface com.ibm.retail.saf.provider.POSInfo
getExtendedAttribute, getExtendedAttributeNames, removeExtendedAttribute, setExtendedAttribute
 

Method Detail

setItemIdentifier

public void setItemIdentifier(com.ibm.retail.saf.provider.ItemIdentifier itemID)
Set the item identifier.

Parameters:
itemID - item identifier

setItemDescription

public void setItemDescription(java.lang.String desc)
Set the item description.

Parameters:
desc - item description

setRegularPrice

public void setRegularPrice(java.lang.String regPrice)
Set the item price.

Parameters:
regPrice - regular unit price

getItemIdentifier

public com.ibm.retail.saf.provider.ItemIdentifier getItemIdentifier()
Get the item identifier.

Returns:
item identifier

getItemDescription

public java.lang.String getItemDescription()
Get the item description.

Returns:
item description

getRegularPrice

public java.lang.String getRegularPrice()
Get the item price.

Returns:
regular unit price