tree: 7cb1c48399c1289e8c0948b5c4699bb1323642de [path history] [tgz]
  1. schematizer/
  2. serializer/
  3. pom.xml
  4. readme.md
converter/readme.md

Apache Converter Serializer and Schematizer

Overview

This project contains 2 projects relating to the OSGi Converter: Serializer and Schematizer.

Serializer

The Serializer, based heavily on the Converter, is useful for transforming a serialized string of text to an object, and vice-versa. Please refer to the project for more details.

Schematizer

Once data is serialized, until you can identity the type of object associated with the serialized data, it is difficult to guess which object the data should be serialized to.

The Schematizer, based on the Converter and the Serializer, is useful in cases where serialized data needs to contain meta data about the type of object serialized. Using the Schematizer, it is possible to serialize different data types to the same stream, then upon deserialization, by reading the meta data determine the object type to be used.

Please refer to the project for more details.