org.apache.axis2.databinding
Interface DeserializationTarget
- All Known Implementing Classes:
- MultiTarget, SimpleTarget
- public interface DeserializationTarget
A DeserializationTarget is anything that receives a value from a
Deserializer. Typical DeserializationTargets are things like RPC parameters,
fields in a JavaBean, and items in an array.
Since the deserialization system deals with multirefs that potentially
point to values further forward in the data stream, we always use instances
of this interface to set values. This allows the deserialization framework
to store the targets and fill them in later if necessary.
setValue
public void setValue(Object value)
throws Exception
- Throws:
Exception