Class GridFSFileCodec

java.lang.Object
com.mongodb.client.gridfs.codecs.GridFSFileCodec
All Implemented Interfaces:
Codec<GridFSFile>, Decoder<GridFSFile>, Encoder<GridFSFile>

@Deprecated(since="2021-05-27") public final class GridFSFileCodec extends Object implements Codec<GridFSFile>
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
A codec for GridFS Files
Since:
3.3
  • Constructor Details

    • GridFSFileCodec

      public GridFSFileCodec(CodecRegistry registry)
      Deprecated.
      Create a new instance
      Parameters:
      registry - the codec registry
  • Method Details

    • decode

      public GridFSFile 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<GridFSFile>
      Parameters:
      reader - the BSON reader
      decoderContext - the decoder context
      Returns:
      an instance of the type parameter T.
    • encode

      public void encode(BsonWriter writer, GridFSFile 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<GridFSFile>
      Parameters:
      writer - the BSON writer to encode into
      value - the value to encode
      encoderContext - the encoder context
    • getEncoderClass

      public Class<GridFSFile> 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<GridFSFile>
      Returns:
      the Class instance that this encodes.