public class CustomerCreditIncreaseProcessor extends java.lang.Object implements ItemProcessor<CustomerCredit,CustomerCredit>
| Modifier and Type | Field and Description |
|---|---|
static java.math.BigDecimal |
FIXED_AMOUNT |
| Constructor and Description |
|---|
CustomerCreditIncreaseProcessor() |
| Modifier and Type | Method and Description |
|---|---|
CustomerCredit |
process(CustomerCredit item)
Process the provided item, returning a potentially modified or new item for continued
processing.
|
public CustomerCredit process(CustomerCredit item) throws java.lang.Exception
ItemProcessorprocess in interface ItemProcessor<CustomerCredit,CustomerCredit>item - to be processednull if processing of the
provided item should not continue.java.lang.Exception - thrown if exception occurs during processing.