Class BsonValueCodec

  • All Implemented Interfaces:
    Codec<BsonValue>, Decoder<BsonValue>, Encoder<BsonValue>

    @Deprecated(since="2022-10-31")
    public class BsonValueCodec
    extends java.lang.Object
    implements Codec<BsonValue>
    Deprecated.
    Usage of this API is not supported in AEM as a Cloud Service.
    A codec for unknown BsonValues.

    Useful for decoding a mix of differing Bson types.

    Since:
    3.0
    • Constructor Detail

      • BsonValueCodec

        public BsonValueCodec()
        Deprecated.
        Creates a new instance with a default codec registry that uses the BsonValueCodecProvider.
      • BsonValueCodec

        public BsonValueCodec​(CodecRegistry codecRegistry)
        Deprecated.
        Creates a new instance initialised with the given codec registry.
        Parameters:
        codecRegistry - the CodecRegistry to use to look up the codecs for encoding and decoding to/from BSON
    • Method Detail

      • decode

        public BsonValue decode​(BsonReader reader,
                                DecoderContext decoderContext)
        Deprecated.
        Description copied from interface: Decoder
        Decodes a BSON value from the given reader into an instance of the type parameter T.
        Specified by:
        decode in interface Decoder<BsonValue>
        Parameters:
        reader - the BSON reader
        decoderContext - the decoder context
        Returns:
        an instance of the type parameter T.
      • encode

        public void encode​(BsonWriter writer,
                           BsonValue value,
                           EncoderContext encoderContext)
        Deprecated.
        Description copied from interface: Encoder
        Encode an instance of the type parameter T into a BSON value.
        Specified by:
        encode in interface Encoder<BsonValue>
        Parameters:
        writer - the BSON writer to encode into
        value - the value to encode
        encoderContext - the encoder context
      • getEncoderClass

        public java.lang.Class<BsonValue> getEncoderClass()
        Deprecated.
        Description copied from interface: Encoder
        Returns the Class instance that this encodes. This is necessary because Java does not reify generic types.
        Specified by:
        getEncoderClass in interface Encoder<BsonValue>
        Returns:
        the Class instance that this encodes.