atg.commerce.order.processor
Class ValidationPipelineArgs

java.lang.Object
  extended by java.util.AbstractMap<K,V>
      extended by java.util.HashMap
          extended by atg.commerce.order.processor.ValidationPipelineArgs
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.util.Map
Direct Known Subclasses:
ValidateCostCenterPipelineArgs, ValidatePaymentGroupPipelineArgs, ValidateShippingGroupPipelineArgs

public class ValidationPipelineArgs
extends java.util.HashMap

ValidationPipelineArgs provides a dictionary for storing arguments to the pipeline processors that validate shipping groups and payment groups, and includes convenience methods for looking up well-known names within that dictionary.

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
           
 
Constructor Summary
ValidationPipelineArgs()
           
 
Method Summary
 java.util.Locale getLocale()
          Return the locale to use for user-visible error messages.
 Order getOrder()
          Return the order whose payment or shipping group is being validated.
 OrderManager getOrderManager()
          Return the order manager that invoked the current pipeline chain.
 void setLocale(java.util.Locale pLocale)
          Set the locale to use for user-visible error messages.
 void setOrder(Order pOrder)
          Set the order whose payment or shipping group is being validated.
 void setOrderManager(OrderManager pOrderManager)
          Set the order manager that invoked the current pipeline chain.
 
Methods inherited from class java.util.HashMap
clear, clone, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Constructor Detail

ValidationPipelineArgs

public ValidationPipelineArgs()
Method Detail

setOrder

public void setOrder(Order pOrder)
Set the order whose payment or shipping group is being validated.


getOrder

public Order getOrder()
Return the order whose payment or shipping group is being validated.


setOrderManager

public void setOrderManager(OrderManager pOrderManager)
Set the order manager that invoked the current pipeline chain.


getOrderManager

public OrderManager getOrderManager()
Return the order manager that invoked the current pipeline chain.


setLocale

public void setLocale(java.util.Locale pLocale)
Set the locale to use for user-visible error messages.


getLocale

public java.util.Locale getLocale()
Return the locale to use for user-visible error messages.