![JAR search and dependency download from the Maven repository](/logo.png)
com.jrodeo.bson.marshallers.AbstractSimpleMarshaller 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;
/**
* Created by bjhlista on 2/16/16.
*/
public abstract class AbstractSimpleMarshaller implements Marshaller {
MarshallerRegistry registry;
@Override
public void setRegistry(MarshallerRegistry registry) {
this.registry = registry;
}
@Override
public String subTypeName() {
return null;
}
@Override
public Class getSuperType() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy