(byte[] serialized, Class<T> clazz)
| 838 | } |
| 839 | |
| 840 | public static <T> T deserialize(byte[] serialized, Class<T> clazz) { |
| 841 | return serializationDelegate.deserialize(serialized, clazz); |
| 842 | } |
| 843 | |
| 844 | /** |
| 845 | * Serialize an object using the configured serialization and then base64 encode it into a string. |