public abstract class SerializationPolicy
extends java.lang.Object
RemoteService
.
The serialize and deserialize queries are from the perspective
of the server, not the web browser.Constructor and Description |
---|
SerializationPolicy() |
Modifier and Type | Method and Description |
---|---|
java.util.Set<java.lang.String> |
getClientFieldNamesForEnhancedClass(java.lang.Class<?> clazz)
Returns the field names of the given class known to the client for classes
that are expected to be enhanced on the server to have additional fields,
or null for classes that are not expected to be enhanced.
|
abstract boolean |
shouldDeserializeFields(java.lang.Class<?> clazz)
Returns
true if the class' fields should be deserialized. |
abstract boolean |
shouldSerializeFields(java.lang.Class<?> clazz)
Returns
true if the class' fields should be serialized. |
boolean |
shouldSerializeFinalFields()
Returns whether the client was compiled with
rpc.XserializeFinalFields = true . |
abstract void |
validateDeserialize(java.lang.Class<?> clazz)
Validates that the specified class should be deserialized from a stream.
|
abstract void |
validateSerialize(java.lang.Class<?> clazz)
Validates that the specified class should be serialized into a stream.
|
public java.util.Set<java.lang.String> getClientFieldNamesForEnhancedClass(java.lang.Class<?> clazz)
clazz
- the class to testpublic abstract boolean shouldDeserializeFields(java.lang.Class<?> clazz)
true
if the class' fields should be deserialized.clazz
- the class to testtrue
if the class' fields should be deserializedpublic abstract boolean shouldSerializeFields(java.lang.Class<?> clazz)
true
if the class' fields should be serialized.clazz
- the class to testtrue
if the class' fields should be serializedpublic boolean shouldSerializeFinalFields()
rpc.XserializeFinalFields = true
.public abstract void validateDeserialize(java.lang.Class<?> clazz) throws SerializationException
clazz
- the class to validateSerializationException
- if the class is not allowed to be
deserializedpublic abstract void validateSerialize(java.lang.Class<?> clazz) throws SerializationException
clazz
- the class to validateSerializationException
- if the class is not allowed to be serialized