Package org.bson.codecs
Class CodeWithScopeCodec
- java.lang.Object
-
- org.bson.codecs.CodeWithScopeCodec
-
- All Implemented Interfaces:
Codec<CodeWithScope>,Decoder<CodeWithScope>,Encoder<CodeWithScope>
@Deprecated(since="2022-10-31") public class CodeWithScopeCodec extends java.lang.Object implements Codec<CodeWithScope>
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.Encodes and decodesCodeWithScopeinstances.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description CodeWithScopeCodec(Codec<Document> documentCodec)Deprecated.Creates a new CodeWithScopeCodec.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description CodeWithScopedecode(BsonReader bsonReader, DecoderContext decoderContext)Deprecated.Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, CodeWithScope codeWithScope, EncoderContext encoderContext)Deprecated.Encode an instance of the type parameterTinto a BSON value.java.lang.Class<CodeWithScope>getEncoderClass()Deprecated.Returns the Class instance that this encodes.
-
-
-
Constructor Detail
-
CodeWithScopeCodec
public CodeWithScopeCodec(Codec<Document> documentCodec)
Deprecated.Creates a new CodeWithScopeCodec.- Parameters:
documentCodec- a Codec for encoding and decoding theCodeWithScope.getScope().
-
-
Method Detail
-
decode
public CodeWithScope decode(BsonReader bsonReader, DecoderContext decoderContext)
Deprecated.Description copied from interface:DecoderDecodes a BSON value from the given reader into an instance of the type parameterT.- Specified by:
decodein interfaceDecoder<CodeWithScope>- Parameters:
bsonReader- the BSON readerdecoderContext- the decoder context- Returns:
- an instance of the type parameter
T.
-
encode
public void encode(BsonWriter writer, CodeWithScope codeWithScope, EncoderContext encoderContext)
Deprecated.Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.- Specified by:
encodein interfaceEncoder<CodeWithScope>- Parameters:
writer- the BSON writer to encode intocodeWithScope- the value to encodeencoderContext- the encoder context
-
getEncoderClass
public java.lang.Class<CodeWithScope> getEncoderClass()
Deprecated.Description copied from interface:EncoderReturns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClassin interfaceEncoder<CodeWithScope>- Returns:
- the Class instance that this encodes.
-
-