atg.commerce.payment.processor
Class ProcCreateGiftCertificateInfo
java.lang.Object
   atg.nucleus.logging.VariableArgumentApplicationLoggingImpl
atg.nucleus.logging.VariableArgumentApplicationLoggingImpl
       atg.nucleus.GenericService
atg.nucleus.GenericService
           atg.commerce.payment.processor.ProcCreateGiftCertificateInfo
atg.commerce.payment.processor.ProcCreateGiftCertificateInfo
- All Implemented Interfaces: 
- atg.naming.AbsoluteNameable, NameContextBindingListener, NameContextElement, atg.naming.NameContextParentable, NameResolver, AdminableService, atg.nucleus.Configured, ApplicationLogging, atg.nucleus.logging.ApplicationLoggingSender, atg.nucleus.logging.TraceApplicationLogging, VariableArgumentApplicationLogging, ComponentNameResolver, Service, ServiceListener, PipelineProcessor, java.util.EventListener
- public class ProcCreateGiftCertificateInfo 
- extends GenericService- implements PipelineProcessor
This pipeline processor element is called to create generic
 GiftCertificateInfo objects from instances of the GiftCertificate
 payment group.  It places them into the pipeline argument dictionary so
 that downstream pipeline processors can retrieve them by calling
 PaymentManagerPipelineArgs.getPaymentInfo().
 
 This processor is designed so that the GiftCertificateInfo class can
 easily be extended.  See
 "setGiftCertificateInfoClass" and
 "addDataToGiftCertificateInfo"
 for more information.
- See Also:
- atg.payment.creditcard.GiftCertificateInfo,- atg.payment.creditcard.GenericGiftCertificateInfo
| Field Summary | 
| static java.lang.String | CLASS_VERSION
 | 
| static int | SUCCESSThe possible return value for this processor.
 | 
 
 
 
| Fields inherited from interface atg.nucleus.logging.TraceApplicationLogging | 
| DEFAULT_LOG_TRACE_STATUS | 
 
 
 
 
| Methods inherited from class atg.nucleus.GenericService | 
| addLogListener, createAdminServlet, doStartService, doStopService, getAbsoluteName, getAdminServlet, getAdminServletOutputStreamEncoding, getLoggingForVlogging, getLogListenerCount, getLogListeners, getName, getNameContext, getNucleus, getRoot, getServiceConfiguration, getServiceInfo, isAdminServletUseServletOutputStream, isLoggingDebug, isLoggingError, isLoggingInfo, isLoggingTrace, isLoggingWarning, isRunning, logDebug, logDebug, logDebug, logError, logError, logError, logInfo, logInfo, logInfo, logTrace, logTrace, logTrace, logWarning, logWarning, logWarning, nameContextElementBound, nameContextElementUnbound, removeLogListener, reResolveThis, resolveName, resolveName, resolveName, resolveName, sendLogEvent, setAdminServletOutputStreamEncoding, setAdminServletUseServletOutputStream, setLoggingDebug, setLoggingError, setLoggingInfo, setLoggingTrace, setLoggingWarning, setNucleus, setServiceInfo, startService, stopService | 
 
| Methods inherited from class atg.nucleus.logging.VariableArgumentApplicationLoggingImpl | 
| vlogDebug, vlogDebug, vlogDebug, vlogDebug, vlogDebugTrace, vlogError, vlogError, vlogError, vlogError, vlogInfo, vlogInfo, vlogInfo, vlogInfo, vlogTrace, vlogTrace, vlogTrace, vlogTrace, vlogWarning, vlogWarning, vlogWarning, vlogWarning | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
CLASS_VERSION
public static java.lang.String CLASS_VERSION
SUCCESS
public static final int SUCCESS
- The possible return value for this processor.
 
- See Also:
- Constant Field Values
 
ProcCreateGiftCertificateInfo
public ProcCreateGiftCertificateInfo()
getGiftCertificateInfoClass
public java.lang.String getGiftCertificateInfoClass()
- Return the class to instantiate when creating a new GiftCertificateInfo
 object.
 
- 
 
- 
 
setGiftCertificateInfoClass
public void setGiftCertificateInfoClass(java.lang.String pGiftCertificateInfoClass)
- Specify the class to instantiate when creating a new GiftCertificateInfo
 object.  If the GenericGiftCertificateInfoclass is extended to
 include more information, this property can be changed to reflect the
 new class.
 
- 
 
- 
 
addDataToGiftCertificateInfo
protected void addDataToGiftCertificateInfo(Order pOrder,
                                            GiftCertificate pPaymentGroup,
                                            double pAmount,
                                            PaymentManagerPipelineArgs pParams,
                                            GenericGiftCertificateInfo pGiftCertificateInfo)
- This method populates the GiftCertificateInfoobject with
 data.  If the additional data is required, a subclass ofGenericGiftCertificateInfocan be created with additional
 properties, thegiftCertificateInfoClassproperty can be
 changed to specify the new class, and this method can be overridden to
 add data for the new properties (or another pipeline processor could be
 added after this processor to populate the additional properties).
 
- 
 
- 
- Parameters:
- pOrder- The order being paid for.
- pPaymentGroup- The payment group being processed.
- pAmount- The amount being authorized, debited, or credited
- pParams- The parameter dictionary passed to this pipeline processor
- pGiftCertificateInfo- An object that holds information understood by the gift
    certificate payment processor.
 
getGiftCertificateInfo
protected GenericGiftCertificateInfo getGiftCertificateInfo()
                                                     throws java.lang.Exception
- Factory method to create a new GiftCertificateInfo object.  The class
 that is created is that specified by the
 giftCertificateInfoClassproperty, and must be a subclass
 ofatg.payment.giftcertificate.GenericGiftCertificateInfo.
 
- 
 
- 
- Returns:
- An object of the class specified by giftCertificateInfoClass
- Throws:
- java.lang.Exception- if any instantiation error occurs when creating the info object
 
runProcess
public int runProcess(java.lang.Object pParam,
                      PipelineResult pResult)
               throws java.lang.Exception
- Generate a GiftCertificateInfo object of the class specified by
 giftCertificateInfoClass, populate it with data from aGiftCertificatepayment group by callingaddDataToGiftCertificateInfo, and add it to the pipeline
 argument dictionary so that downstream pipeline processors can access
 it.
 
- 
- Specified by:
- runProcessin interface- PipelineProcessor
 
- 
- Parameters:
- pParam- Parameter dictionary of type PaymentManagerPipelineArgs.
- pResult- Pipeline result object, not used by this method.
- Returns:
- An integer value used to determine which pipeline processor is called next.
- Throws:
- java.lang.Exception- If any error occurs creating or populating the gift certificate info object.
 
getRetCodes
public int[] getRetCodes()
- Return the possible return values for this processor.  This processor
 always returns a success code.
 
- 
- Specified by:
- getRetCodesin interface- PipelineProcessor
 
- 
- Returns:
- an array of all the return codes that could be returned by this PipelineProcessor.