Class MorphiaTypesCodecProvider

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

    public class MorphiaTypesCodecProvider
    extends Object
    implements org.bson.codecs.configuration.CodecProvider
    Defines a provider of codecs for Morphia's types
    • Constructor Detail

      • MorphiaTypesCodecProvider

        public MorphiaTypesCodecProvider​(Mapper mapper)
        Create the provider
        Parameters:
        mapper - the mapper to use
    • Method Detail

      • addCodec

        protected <T> void addCodec​(org.bson.codecs.Codec<T> codec)
      • get

        public <T> org.bson.codecs.Codec<T> get​(Class<T> clazz,
                                                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:
        clazz - 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