Interface DeserializationContext
- 
- All Known Subinterfaces:
 ParsingHandler
public interface DeserializationContextWhat is generated as after deserialization. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassNameResolvergetClassNameMap()java.util.Map<java.lang.String,java.lang.String>getRootAttributes()A string to string map of attributes set on the root of the serialized XML document.java.util.List<java.lang.Object>getRootObjects()The list of objects that were deserialized.java.util.List<SerializationException>getWarnings()A list of exceptions, if any, generated during deserialization that were not fatal. 
 - 
 
- 
- 
Method Detail
- 
getClassNameMap
ClassNameResolver getClassNameMap()
 
- 
getRootObjects
java.util.List<java.lang.Object> getRootObjects()
The list of objects that were deserialized. 
- 
getWarnings
java.util.List<SerializationException> getWarnings()
A list of exceptions, if any, generated during deserialization that were not fatal. Will not be null, but should be empty. 
- 
getRootAttributes
java.util.Map<java.lang.String,java.lang.String> getRootAttributes()
A string to string map of attributes set on the root of the serialized XML document. 
 - 
 
 -