![JAR search and dependency download from the Maven repository](/logo.png)
com.jrodeo.bson.marshallers.DefaultMarshallerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bson-marshaller Show documentation
Show all versions of bson-marshaller Show documentation
A tool to create Java marshallers to and from bson. Currently used in a data access
layer serialize Json to Bson for MongoDB storage.
package com.jrodeo.bson.marshallers;
/**
* This default factory adds some hand generated Marshallers
.
*/
public class DefaultMarshallerFactory extends AbstractMarshallerFactory {
public DefaultMarshallerFactory() {
super();
registerMarshaller(new ObjectIdMarshaller());
registerMarshaller(new UUIDMarshaller());
registerMarshaller(new DateMarshaller());
registerMarshaller(new BigDecimalMarshaller());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy