com.softslate.commerce.businessobjects.shipping
Interface ShippingMethodProcessor

All Superinterfaces:
BusinessObject
All Known Implementing Classes:
BasicShippingMethodProcessor

public interface ShippingMethodProcessor
extends BusinessObject

Interface for business logic methods having to do with shipping methods. Created in the Struts layer in response to requests for viewing, editing, adding, and deleting shipping methods.

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

The default "shippingMethodProcessorImplementer" is ShippingMethodProcessor.

Author:
David Tobey

Method Summary
 void addShippingMethod(java.util.Map parameters)
           
 void deleteShippingMethod(java.util.Map parameters)
           
 void editDeleteShippingMethods(java.util.Map parameters)
           
 void editShippingMethod(java.util.Map parameters)
           
 ShippingMethod loadShippingMethodFromID(java.util.Map parameters)
           
 java.util.Map loadShippingMethodsAndCount(java.util.Map parameters)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

loadShippingMethodsAndCount

java.util.Map loadShippingMethodsAndCount(java.util.Map parameters)
                                          throws java.lang.Exception
Throws:
java.lang.Exception

addShippingMethod

void addShippingMethod(java.util.Map parameters)
                       throws java.lang.Exception
Throws:
java.lang.Exception

loadShippingMethodFromID

ShippingMethod loadShippingMethodFromID(java.util.Map parameters)
                                        throws java.lang.Exception
Throws:
java.lang.Exception

editShippingMethod

void editShippingMethod(java.util.Map parameters)
                        throws java.lang.Exception
Throws:
java.lang.Exception

editDeleteShippingMethods

void editDeleteShippingMethods(java.util.Map parameters)
                               throws java.lang.Exception
Throws:
java.lang.Exception

deleteShippingMethod

void deleteShippingMethod(java.util.Map parameters)
                          throws java.lang.Exception
Throws:
java.lang.Exception


Copyright ? SoftSlate, LLC 2003?2005