Class UuidCodec

  • All Implemented Interfaces:
    Codec<java.util.UUID>, Decoder<java.util.UUID>, Encoder<java.util.UUID>
    Direct Known Subclasses:
    OverridableUuidRepresentationUuidCodec

    @Deprecated(since="2022-10-31")
    public class UuidCodec
    extends java.lang.Object
    implements Codec<java.util.UUID>
    Deprecated.
    Usage of this API is not supported in AEM as a Cloud Service.
    Encodes and decodes UUID objects.
    Since:
    3.0
    • Constructor Summary

      Constructors 
      Constructor Description
      UuidCodec()
      Deprecated.
      The constructor for UUIDCodec, default is JAVA_LEGACY
      UuidCodec​(UuidRepresentation uuidRepresentation)
      Deprecated.
      The default UUIDRepresentation is JAVA_LEGACY to be compatible with existing documents
    • Constructor Detail

      • UuidCodec

        public UuidCodec​(UuidRepresentation uuidRepresentation)
        Deprecated.
        The default UUIDRepresentation is JAVA_LEGACY to be compatible with existing documents
        Parameters:
        uuidRepresentation - the representation of UUID
        See Also:
        UuidRepresentation
      • UuidCodec

        public UuidCodec()
        Deprecated.
        The constructor for UUIDCodec, default is JAVA_LEGACY
    • Method Detail

      • getUuidRepresentation

        public UuidRepresentation getUuidRepresentation()
        Deprecated.
        The UuidRepresentation with which this instance is configured
        Returns:
        the uuid representation
        Since:
        3.12
      • encode

        public void encode​(BsonWriter writer,
                           java.util.UUID 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<java.util.UUID>
        Parameters:
        writer - the BSON writer to encode into
        value - the value to encode
        encoderContext - the encoder context
      • decode

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

        public java.lang.Class<java.util.UUID> 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<java.util.UUID>
        Returns:
        the Class instance that this encodes.
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object