Class AuthenticatedEncryptedDataMessage
-
- All Implemented Interfaces:
-
java.io.Externalizable
,java.io.Serializable
,java.lang.Comparable
,org.apache.avro.generic.GenericContainer
,org.apache.avro.generic.GenericRecord
,org.apache.avro.generic.IndexedRecord
,org.apache.avro.specific.SpecificRecord
public class AuthenticatedEncryptedDataMessage extends SpecificRecordBase implements SpecificRecord
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
AuthenticatedEncryptedDataMessage.Builder
RecordBuilder for AuthenticatedEncryptedDataMessage instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public CommonHeader
header
public ByteBuffer
encryptedPayload
public ByteBuffer
authTag
-
Constructor Summary
Constructors Constructor Description AuthenticatedEncryptedDataMessage()
Default constructor. AuthenticatedEncryptedDataMessage(CommonHeader header, ByteBuffer encryptedPayload, ByteBuffer authTag)
All-args constructor.
-
Method Summary
Modifier and Type Method Description CommonHeader
getHeader()
Gets the value of the 'header' field. void
setHeader(CommonHeader value)
Sets the value of the 'header' field. ByteBuffer
getEncryptedPayload()
Gets the value of the 'encryptedPayload' field. void
setEncryptedPayload(ByteBuffer value)
Sets the value of the 'encryptedPayload' field. ByteBuffer
getAuthTag()
Gets the value of the 'authTag' field. void
setAuthTag(ByteBuffer value)
Sets the value of the 'authTag' field. static Schema
getClassSchema()
static BinaryMessageEncoder<AuthenticatedEncryptedDataMessage>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<AuthenticatedEncryptedDataMessage>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<AuthenticatedEncryptedDataMessage>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this AuthenticatedEncryptedDataMessage to a ByteBuffer. static AuthenticatedEncryptedDataMessage
fromByteBuffer(ByteBuffer b)
Deserializes a AuthenticatedEncryptedDataMessage from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static AuthenticatedEncryptedDataMessage.Builder
newBuilder()
Creates a new AuthenticatedEncryptedDataMessage RecordBuilder. static AuthenticatedEncryptedDataMessage.Builder
newBuilder(AuthenticatedEncryptedDataMessage.Builder other)
Creates a new AuthenticatedEncryptedDataMessage RecordBuilder by copying an existing Builder. static AuthenticatedEncryptedDataMessage.Builder
newBuilder(AuthenticatedEncryptedDataMessage other)
Creates a new AuthenticatedEncryptedDataMessage RecordBuilder by copying an existing AuthenticatedEncryptedDataMessage instance. void
writeExternal(ObjectOutput out)
void
readExternal(ObjectInput in)
void
customEncode(Encoder out)
void
customDecode(ResolvingDecoder in)
-
Methods inherited from class org.apache.avro.specific.SpecificRecordBase
compareTo, equals, getConversion, hashCode, toString
-
Methods inherited from class org.apache.avro.generic.GenericRecord
hasField
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
AuthenticatedEncryptedDataMessage
AuthenticatedEncryptedDataMessage()
Default constructor.
-
AuthenticatedEncryptedDataMessage
AuthenticatedEncryptedDataMessage(CommonHeader header, ByteBuffer encryptedPayload, ByteBuffer authTag)
All-args constructor.- Parameters:
header
- The new value for headerencryptedPayload
- The new value for encryptedPayloadauthTag
- The new value for authTag
-
-
Method Detail
-
getHeader
CommonHeader getHeader()
Gets the value of the 'header' field.
- Returns:
The value of the 'header' field.
-
setHeader
void setHeader(CommonHeader value)
Sets the value of the 'header' field.
- Parameters:
value
- the value to set.
-
getEncryptedPayload
ByteBuffer getEncryptedPayload()
Gets the value of the 'encryptedPayload' field.
- Returns:
The value of the 'encryptedPayload' field.
-
setEncryptedPayload
void setEncryptedPayload(ByteBuffer value)
Sets the value of the 'encryptedPayload' field.
- Parameters:
value
- the value to set.
-
getAuthTag
ByteBuffer getAuthTag()
Gets the value of the 'authTag' field.
- Returns:
The value of the 'authTag' field.
-
setAuthTag
void setAuthTag(ByteBuffer value)
Sets the value of the 'authTag' field.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<AuthenticatedEncryptedDataMessage> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<AuthenticatedEncryptedDataMessage> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<AuthenticatedEncryptedDataMessage> createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.
- Parameters:
resolver
- a SchemaStore used to find schemas by fingerprint- Returns:
a BinaryMessageDecoder instance for this class backed by the given SchemaStore
-
toByteBuffer
ByteBuffer toByteBuffer()
Serializes this AuthenticatedEncryptedDataMessage to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static AuthenticatedEncryptedDataMessage fromByteBuffer(ByteBuffer b)
Deserializes a AuthenticatedEncryptedDataMessage from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a AuthenticatedEncryptedDataMessage instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static AuthenticatedEncryptedDataMessage.Builder newBuilder()
Creates a new AuthenticatedEncryptedDataMessage RecordBuilder.
- Returns:
A new AuthenticatedEncryptedDataMessage RecordBuilder
-
newBuilder
static AuthenticatedEncryptedDataMessage.Builder newBuilder(AuthenticatedEncryptedDataMessage.Builder other)
Creates a new AuthenticatedEncryptedDataMessage RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new AuthenticatedEncryptedDataMessage RecordBuilder
-
newBuilder
static AuthenticatedEncryptedDataMessage.Builder newBuilder(AuthenticatedEncryptedDataMessage other)
Creates a new AuthenticatedEncryptedDataMessage RecordBuilder by copying an existing AuthenticatedEncryptedDataMessage instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new AuthenticatedEncryptedDataMessage RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
customEncode
void customEncode(Encoder out)
-
customDecode
void customDecode(ResolvingDecoder in)
-
-
-
-