Interface ShippingRate
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
ShippingRateBean
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
Modifier and TypeMethodDescriptiongetFloor()
boolean
int
int
void
void
setCeiling
(Double ceiling) void
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 Details
-
getShippingRateID
int getShippingRateID() -
setShippingRateID
void setShippingRateID(int shippingRateID) -
getAmount
Double getAmount() -
setAmount
-
getCeiling
Double getCeiling() -
setCeiling
-
getFloor
Double getFloor() -
setFloor
-
getIsActive
boolean getIsActive() -
setIsActive
void setIsActive(boolean isActive) -
getShippingMethodID
int getShippingMethodID() -
setShippingMethodID
void setShippingMethodID(int shippingMethodID) -
getShippingMethod
ShippingMethod getShippingMethod() -
setShippingMethod
-