org.springframework.batch.sample.domain.trade.internal
Class CustomerCreditIncreaseProcessor

java.lang.Object
  extended by org.springframework.batch.sample.domain.trade.internal.CustomerCreditIncreaseProcessor
All Implemented Interfaces:
ItemProcessor<CustomerCredit,CustomerCredit>

public class CustomerCreditIncreaseProcessor
extends Object
implements ItemProcessor<CustomerCredit,CustomerCredit>

Increases customer's credit by a fixed amount.

Author:
Robert Kasanicky

Field Summary
static BigDecimal FIXED_AMOUNT
           
 
Constructor Summary
CustomerCreditIncreaseProcessor()
           
 
Method Summary
 CustomerCredit process(CustomerCredit item)
          Process the provided item, returning a potentially modified or new item for continued processing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FIXED_AMOUNT

public static final BigDecimal FIXED_AMOUNT
Constructor Detail

CustomerCreditIncreaseProcessor

public CustomerCreditIncreaseProcessor()
Method Detail

process

public CustomerCredit process(CustomerCredit item)
                       throws Exception
Description copied from interface: ItemProcessor
Process the provided item, returning a potentially modified or new item for continued processing. If the returned result is null, it is assumed that processing of the item should not continue.

Specified by:
process in interface ItemProcessor<CustomerCredit,CustomerCredit>
Parameters:
item - to be processed
Returns:
potentially modified or new item for continued processing, null if processing of the provided item should not continue.
Throws:
Exception


Copyright © 2009 SpringSource. All Rights Reserved.