atg.commerce.order.processor
Class ValidationPipelineArgs
java.lang.Object
   java.util.AbstractMap<K,V>
java.util.AbstractMap<K,V>
       java.util.HashMap
java.util.HashMap
           atg.commerce.order.processor.ValidationPipelineArgs
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
 
| Nested classes/interfaces inherited from class java.util.AbstractMap | 
| java.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<K,V> | 
 
 
 
| 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 | 
 
CLASS_VERSION
public static java.lang.String CLASS_VERSION
ValidationPipelineArgs
public ValidationPipelineArgs()
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.
 
-