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 Details

    • getShippingRateID

      int getShippingRateID()
    • setShippingRateID

      void setShippingRateID(int shippingRateID)
    • getAmount

      Double getAmount()
    • setAmount

      void setAmount(Double amount)
    • getCeiling

      Double getCeiling()
    • setCeiling

      void setCeiling(Double ceiling)
    • getFloor

      Double getFloor()
    • setFloor

      void setFloor(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)