Interface ShippingMethod
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
ShippingMethodBean
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
Modifier and TypeMethodDescriptiongetBase()
getCity()
getCode()
boolean
boolean
getName()
int
getState()
void
setAddress1
(String address1) void
setAddress2
(String address2) void
void
void
void
setCountry
(String country) void
setIsActive
(boolean isActive) void
setIsPickUp
(boolean isPickUp) void
setMethodOrder
(Integer methodOrder) void
setMethodType
(String methodType) void
setMinimum
(Double minimum) void
void
setNumberDaysToShip
(Integer numberDaysToShip) void
setOrganization
(String organization) void
setPostalCode
(String postalCode) void
setShippingMethodID
(int shippingMethodID) void
setShippingRates
(Collection shippingRates) void
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Method Details
-
getShippingMethodID
int getShippingMethodID() -
setShippingMethodID
void setShippingMethodID(int shippingMethodID) -
getBase
Double getBase() -
setBase
-
getCode
String getCode() -
setCode
-
getIsActive
boolean getIsActive() -
setIsActive
void setIsActive(boolean isActive) -
getMethodType
String getMethodType() -
setMethodType
-
getMinimum
Double getMinimum() -
setMinimum
-
getName
String getName() -
setName
-
getIsPickUp
boolean getIsPickUp() -
setIsPickUp
void setIsPickUp(boolean isPickUp) -
getOrganization
String getOrganization() -
setOrganization
-
getAddress1
String getAddress1() -
setAddress1
-
getAddress2
String getAddress2() -
setAddress2
-
getCity
String getCity() -
setCity
-
getState
String getState() -
setState
-
getCountry
String getCountry() -
setCountry
-
getPostalCode
String getPostalCode() -
setPostalCode
-
getShippingRates
Collection getShippingRates() -
setShippingRates
-
getNumberDaysToShip
Integer getNumberDaysToShip() -
setNumberDaysToShip
-
getMethodOrder
Integer getMethodOrder() -
setMethodOrder
-