com.softslate.commerce.businessobjects.payment
Interface AdminPaymentProcessor

All Superinterfaces:
BusinessObject, BusinessProcessor
All Known Implementing Classes:
BasicAdminPaymentProcessor

public interface AdminPaymentProcessor
extends BusinessProcessor

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

When the application needs to create an instance that implements PaymentProcessor, BusinessObjectFactory finds the name of the Java class to instantiate from the "paymentProcessorImplementer" setting in the npcSetting database table.

The default "paymentProcessorImplementer" is PaymentProcessor.

Author:
David Tobey

Method Summary
 void addPayment(java.util.Map parameters)
           
 void deletePayment(java.util.Map parameters)
           
 void editDeletePayments(java.util.Map parameters)
           
 void editPayment(java.util.Map parameters)
           
 java.util.Collection loadActivePayments()
           
 java.util.Map loadPaymentFromID(java.util.Map parameters)
           
 java.util.Map loadPaymentsAndCount(java.util.Map parameters)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessProcessor
getBusinessObjectFactory, getDaoFactory, getSettingsBean, getUser, setBusinessObjectFactory, setDaoFactory, setSettingsBean, setUser
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

loadActivePayments

public java.util.Collection loadActivePayments()
                                        throws java.lang.Exception
Throws:
java.lang.Exception

loadPaymentsAndCount

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

addPayment

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

loadPaymentFromID

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

editPayment

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

editDeletePayments

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

deletePayment

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


Copyright © SoftSlate, Inc. 2003–2005