Class MorphiaCodecProvider

  • All Implemented Interfaces:
    org.bson.codecs.configuration.CodecProvider

    public class MorphiaCodecProvider
    extends Object
    implements org.bson.codecs.configuration.CodecProvider
    Provider for codecs for Morphia entities
    • Constructor Detail

      • MorphiaCodecProvider

        public MorphiaCodecProvider​(Mapper mapper,
                                    Datastore datastore)
        Creates a provider
        Parameters:
        mapper - the mapper to use
        datastore - the datastore to use
    • Method Detail

      • get

        public <T> org.bson.codecs.Codec<T> get​(Class<T> type,
                                                org.bson.codecs.configuration.CodecRegistry registry)
        Description copied from interface: org.bson.codecs.configuration.CodecProvider
        Get a Codec using the given context, which includes, most importantly, the Class for which a Codec is required.
        Specified by:
        get in interface org.bson.codecs.configuration.CodecProvider
        Type Parameters:
        T - the type of the class for which a Codec is required
        Parameters:
        type - the Class for which to get a Codec
        registry - the registry to use for resolving dependent Codec instances
        Returns:
        the Codec instance, which may be null, if this source is unable to provide one for the requested Class