com.softslate.commerce.businessobjects.shipping
Interface ShippingMethod

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
ShippingMethodBean

public interface ShippingMethod
extends BusinessObject

Interface representing a shipping method within the system.

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

The default "shippingMethodImplementer" is ShippingMethodBean.

Author:
David Tobey

Method Summary
 java.lang.Double getBase()
           
 java.lang.String getCode()
           
 boolean getIsActive()
           
 java.lang.String getMethodType()
           
 java.lang.Double getMinimum()
           
 java.lang.String getName()
           
 int getShippingMethodID()
           
 java.util.Collection getShippingRates()
           
 void setBase(java.lang.Double base)
           
 void setCode(java.lang.String code)
           
 void setIsActive(boolean isActive)
           
 void setMethodType(java.lang.String methodType)
           
 void setMinimum(java.lang.Double minimum)
           
 void setName(java.lang.String name)
           
 void setShippingMethodID(int shippingMethodID)
           
 void setShippingRates(java.util.Collection shippingRates)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

getShippingMethodID

int getShippingMethodID()

setShippingMethodID

void setShippingMethodID(int shippingMethodID)

getBase

java.lang.Double getBase()

setBase

void setBase(java.lang.Double base)

getCode

java.lang.String getCode()

setCode

void setCode(java.lang.String code)

getIsActive

boolean getIsActive()

setIsActive

void setIsActive(boolean isActive)

getMethodType

java.lang.String getMethodType()

setMethodType

void setMethodType(java.lang.String methodType)

getMinimum

java.lang.Double getMinimum()

setMinimum

void setMinimum(java.lang.Double minimum)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getShippingRates

java.util.Collection getShippingRates()

setShippingRates

void setShippingRates(java.util.Collection shippingRates)


Copyright ? SoftSlate, LLC 2003?2005