com.softslate.commerce.businessobjects.shipping
Interface ShippingRate

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
ShippingRateBean

public interface ShippingRate
extends BusinessObject

Interface representing a shipping rate within the system.

When the application needs to create an instance that implements sscShippingRate, BusinessObjectFactory finds the name of the Java class to instantiate from the "shippingRateImplementer" setting in the appComponents.properties file.

The default "shippingRateImplementer" is ShippingRateBean.

Author:
David Tobey

Method Summary
 java.lang.Double getAmount()
           
 java.lang.Double getCeiling()
           
 java.lang.Double getFloor()
           
 boolean getIsActive()
           
 ShippingMethod getShippingMethod()
           
 int getShippingMethodID()
           
 int getShippingRateID()
           
 void setAmount(java.lang.Double amount)
           
 void setCeiling(java.lang.Double ceiling)
           
 void setFloor(java.lang.Double floor)
           
 void setIsActive(boolean isActive)
           
 void setShippingMethod(ShippingMethod shippingMethod)
           
 void setShippingMethodID(int shippingMethodID)
           
 void setShippingRateID(int shippingRateID)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

getShippingRateID

int getShippingRateID()

setShippingRateID

void setShippingRateID(int shippingRateID)

getAmount

java.lang.Double getAmount()

setAmount

void setAmount(java.lang.Double amount)

getCeiling

java.lang.Double getCeiling()

setCeiling

void setCeiling(java.lang.Double ceiling)

getFloor

java.lang.Double getFloor()

setFloor

void setFloor(java.lang.Double floor)

getIsActive

boolean getIsActive()

setIsActive

void setIsActive(boolean isActive)

getShippingMethodID

int getShippingMethodID()

setShippingMethodID

void setShippingMethodID(int shippingMethodID)

getShippingMethod

ShippingMethod getShippingMethod()

setShippingMethod

void setShippingMethod(ShippingMethod shippingMethod)


Copyright © SoftSlate, LLC 2003–2005