All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jrodeo.bson.marshallers.AbstractSimpleMarshaller Maven / Gradle / Ivy

Go to download

A tool to create Java marshallers to and from bson. Currently used in a data access layer serialize Json to Bson for MongoDB storage.

There is a newer version: 0.9.15
Show newest version
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