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 Details

    • getShippingMethodID

      int getShippingMethodID()
    • setShippingMethodID

      void setShippingMethodID(int shippingMethodID)
    • getBase

      Double getBase()
    • setBase

      void setBase(Double base)
    • getCode

      String getCode()
    • setCode

      void setCode(String code)
    • getIsActive

      boolean getIsActive()
    • setIsActive

      void setIsActive(boolean isActive)
    • getMethodType

      String getMethodType()
    • setMethodType

      void setMethodType(String methodType)
    • getMinimum

      Double getMinimum()
    • setMinimum

      void setMinimum(Double minimum)
    • getName

      String getName()
    • setName

      void setName(String name)
    • getIsPickUp

      boolean getIsPickUp()
    • setIsPickUp

      void setIsPickUp(boolean isPickUp)
    • getOrganization

      String getOrganization()
    • setOrganization

      void setOrganization(String organization)
    • getAddress1

      String getAddress1()
    • setAddress1

      void setAddress1(String address1)
    • getAddress2

      String getAddress2()
    • setAddress2

      void setAddress2(String address2)
    • getCity

      String getCity()
    • setCity

      void setCity(String city)
    • getState

      String getState()
    • setState

      void setState(String state)
    • getCountry

      String getCountry()
    • setCountry

      void setCountry(String country)
    • getPostalCode

      String getPostalCode()
    • setPostalCode

      void setPostalCode(String postalCode)
    • getShippingRates

      Collection getShippingRates()
    • setShippingRates

      void setShippingRates(Collection shippingRates)
    • getNumberDaysToShip

      Integer getNumberDaysToShip()
    • setNumberDaysToShip

      void setNumberDaysToShip(Integer numberDaysToShip)
    • getMethodOrder

      Integer getMethodOrder()
    • setMethodOrder

      void setMethodOrder(Integer methodOrder)