org.springframework.batch.core.step.item
Class SkipWrapper<T>

java.lang.Object
  extended by org.springframework.batch.core.step.item.SkipWrapper<T>

public class SkipWrapper<T>
extends Object

Wrapper for an item and its exception if it failed processing.

Author:
Dave Syer

Constructor Summary
SkipWrapper(T item)
           
SkipWrapper(Throwable e)
           
SkipWrapper(T item, Throwable e)
           
 
Method Summary
 Throwable getException()
          Public getter for the exception.
 T getItem()
          Public getter for the item.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SkipWrapper

public SkipWrapper(T item)
Parameters:
item -

SkipWrapper

public SkipWrapper(Throwable e)
Parameters:
e -

SkipWrapper

public SkipWrapper(T item,
                   Throwable e)
Method Detail

getException

public Throwable getException()
Public getter for the exception.

Returns:
the exception

getItem

public T getItem()
Public getter for the item.

Returns:
the item

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2013 SpringSource. All Rights Reserved.