See: Description
Interface | Description |
---|---|
SerializationHandler |
Represents a means of (un)marshalling parameters and results
|
Class | Description |
---|---|
GsonHandler |
SerializationHandler implementation using Google's GSON library.
|
SerializationHandlerFactory |
Registry of SerializationHandler implementations
|
TypeWrapper<T> |
Provides the means to pass a complete type to the Java runtime.
|
Exception | Description |
---|---|
AnaplanAPISerializationException |
Used to indicate a failure to serialize a request body or deserialize a
response body.
|
Provides mechanisms for marshalling request data and unmarshalling response data
The primary purpose of this interface is to cleanly abstract over third-party library dependencies, allowing alternatives to be developed if necessary.
An alternative can be provided by implementing the SerializationHandler interface. An instance of a class implementing this interface can then be given to the Service object in the setup phase by calling setSerializationHandler.