Class UnauthenticatedRegistrationRequest
-
- 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 UnauthenticatedRegistrationRequest extends SpecificRecordBase implements SpecificRecord
The unauthenticated registration request which is required as a first step to establish secure connection between member and MGM.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
UnauthenticatedRegistrationRequest.Builder
RecordBuilder for UnauthenticatedRegistrationRequest instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public UnauthenticatedRegistrationRequestHeader
header
public ByteBuffer
payload
-
Constructor Summary
Constructors Constructor Description UnauthenticatedRegistrationRequest()
Default constructor. UnauthenticatedRegistrationRequest(UnauthenticatedRegistrationRequestHeader header, ByteBuffer payload)
All-args constructor.
-
Method Summary
Modifier and Type Method Description UnauthenticatedRegistrationRequestHeader
getHeader()
Gets the value of the 'header' field. void
setHeader(UnauthenticatedRegistrationRequestHeader value)
Sets the value of the 'header' field. ByteBuffer
getPayload()
Gets the value of the 'payload' field. void
setPayload(ByteBuffer value)
Sets the value of the 'payload' field. static Schema
getClassSchema()
static BinaryMessageEncoder<UnauthenticatedRegistrationRequest>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<UnauthenticatedRegistrationRequest>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<UnauthenticatedRegistrationRequest>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this UnauthenticatedRegistrationRequest to a ByteBuffer. static UnauthenticatedRegistrationRequest
fromByteBuffer(ByteBuffer b)
Deserializes a UnauthenticatedRegistrationRequest from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static UnauthenticatedRegistrationRequest.Builder
newBuilder()
Creates a new UnauthenticatedRegistrationRequest RecordBuilder. static UnauthenticatedRegistrationRequest.Builder
newBuilder(UnauthenticatedRegistrationRequest.Builder other)
Creates a new UnauthenticatedRegistrationRequest RecordBuilder by copying an existing Builder. static UnauthenticatedRegistrationRequest.Builder
newBuilder(UnauthenticatedRegistrationRequest other)
Creates a new UnauthenticatedRegistrationRequest RecordBuilder by copying an existing UnauthenticatedRegistrationRequest 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
-
UnauthenticatedRegistrationRequest
UnauthenticatedRegistrationRequest()
Default constructor.
-
UnauthenticatedRegistrationRequest
UnauthenticatedRegistrationRequest(UnauthenticatedRegistrationRequestHeader header, ByteBuffer payload)
All-args constructor.- Parameters:
header
- Header of the request used later for decrypting the payload.payload
- The registration request encrypted using hybrid encryption.
-
-
Method Detail
-
getHeader
UnauthenticatedRegistrationRequestHeader getHeader()
Gets the value of the 'header' field.
-
setHeader
void setHeader(UnauthenticatedRegistrationRequestHeader value)
Sets the value of the 'header' field. Header of the request used later for decrypting the payload.
- Parameters:
value
- the value to set.
-
getPayload
ByteBuffer getPayload()
Gets the value of the 'payload' field.
-
setPayload
void setPayload(ByteBuffer value)
Sets the value of the 'payload' field. The registration request encrypted using hybrid encryption.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<UnauthenticatedRegistrationRequest> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
-
getDecoder
static BinaryMessageDecoder<UnauthenticatedRegistrationRequest> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
-
createDecoder
static BinaryMessageDecoder<UnauthenticatedRegistrationRequest> 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
-
toByteBuffer
ByteBuffer toByteBuffer()
Serializes this UnauthenticatedRegistrationRequest to a ByteBuffer.
-
fromByteBuffer
static UnauthenticatedRegistrationRequest fromByteBuffer(ByteBuffer b)
Deserializes a UnauthenticatedRegistrationRequest from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static UnauthenticatedRegistrationRequest.Builder newBuilder()
Creates a new UnauthenticatedRegistrationRequest RecordBuilder.
-
newBuilder
static UnauthenticatedRegistrationRequest.Builder newBuilder(UnauthenticatedRegistrationRequest.Builder other)
Creates a new UnauthenticatedRegistrationRequest RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.
-
newBuilder
static UnauthenticatedRegistrationRequest.Builder newBuilder(UnauthenticatedRegistrationRequest other)
Creates a new UnauthenticatedRegistrationRequest RecordBuilder by copying an existing UnauthenticatedRegistrationRequest instance.
- Parameters:
other
- The existing instance to copy.
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
customEncode
void customEncode(Encoder out)
-
customDecode
void customDecode(ResolvingDecoder in)
-
-
-
-