E
- data object the loader is aboutpublic class PostUpdateProcessingStore<E extends DataObject<E>>
extends java.lang.Object
Constructor and Description |
---|
PostUpdateProcessingStore()
creates a blank post processing store
|
Modifier and Type | Method and Description |
---|---|
void |
addPostUpdateProcessing(java.lang.String name,
PostUpdateProcessing<E> processing)
adds a post processing element
|
java.util.ArrayList<java.lang.Exception> |
process(E object)
performs the post processing for the object given and gives back a list of
exceptions for the errors encountered
|
public PostUpdateProcessingStore()
public void addPostUpdateProcessing(java.lang.String name, PostUpdateProcessing<E> processing)
name
- name of the post processing (only one post processing will
be stored per unique nameprocessing
- post processing classpublic java.util.ArrayList<java.lang.Exception> process(E object)
object
- data object to post-process