Package com.evolveum.midpoint.prism
Interface PrismParser.ObjectHandler
- 
- Enclosing interface:
 - PrismParser
 
public static interface PrismParser.ObjectHandler 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhandleData(PrismObject<?> object)Called when an object was successfully retrieved from the input.booleanhandleError(Throwable t)Called when an object could not be successfully retrieved from the input. 
 - 
 
- 
- 
Method Detail
- 
handleData
boolean handleData(PrismObject<?> object)
Called when an object was successfully retrieved from the input.- Returns:
 - true if the processing should continue
 
 
- 
handleError
boolean handleError(Throwable t)
Called when an object could not be successfully retrieved from the input. No data is provided; instead a Throwable is given to the caller.- Returns:
 - true if the processing should continue
 
 
 - 
 
 -