Class VerificationResponse
-
- 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 VerificationResponse extends SpecificRecordBase implements SpecificRecord
Response to the verification request coming from the MGM side.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
VerificationResponse.Builder
RecordBuilder for VerificationResponse instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public String
registrationId
public KeyValuePairList
payload
-
Constructor Summary
Constructors Constructor Description VerificationResponse()
Default constructor. VerificationResponse(String registrationId, KeyValuePairList payload)
All-args constructor.
-
Method Summary
Modifier and Type Method Description String
getRegistrationId()
Gets the value of the 'registrationId' field. void
setRegistrationId(String value)
Sets the value of the 'registrationId' field. KeyValuePairList
getPayload()
Gets the value of the 'payload' field. void
setPayload(KeyValuePairList value)
Sets the value of the 'payload' field. static Schema
getClassSchema()
static BinaryMessageEncoder<VerificationResponse>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<VerificationResponse>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<VerificationResponse>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this VerificationResponse to a ByteBuffer. static VerificationResponse
fromByteBuffer(ByteBuffer b)
Deserializes a VerificationResponse from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
Conversion<out Object>
getConversion(int field)
void
put(int field$, Object value$)
static VerificationResponse.Builder
newBuilder()
Creates a new VerificationResponse RecordBuilder. static VerificationResponse.Builder
newBuilder(VerificationResponse.Builder other)
Creates a new VerificationResponse RecordBuilder by copying an existing Builder. static VerificationResponse.Builder
newBuilder(VerificationResponse other)
Creates a new VerificationResponse RecordBuilder by copying an existing VerificationResponse instance. void
writeExternal(ObjectOutput out)
void
readExternal(ObjectInput in)
-
Methods inherited from class org.apache.avro.specific.SpecificRecordBase
compareTo, customDecode, customEncode, equals, 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
-
VerificationResponse
VerificationResponse()
Default constructor.
-
VerificationResponse
VerificationResponse(String registrationId, KeyValuePairList payload)
All-args constructor.- Parameters:
registrationId
- ID of the registration we can associate the verification response with.payload
- Response's payload.
-
-
Method Detail
-
getRegistrationId
String getRegistrationId()
Gets the value of the 'registrationId' field.
-
setRegistrationId
void setRegistrationId(String value)
Sets the value of the 'registrationId' field. ID of the registration we can associate the verification response with.
- Parameters:
value
- the value to set.
-
getPayload
KeyValuePairList getPayload()
Gets the value of the 'payload' field.
-
setPayload
void setPayload(KeyValuePairList value)
Sets the value of the 'payload' field. Response's payload.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<VerificationResponse> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
-
getDecoder
static BinaryMessageDecoder<VerificationResponse> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
-
createDecoder
static BinaryMessageDecoder<VerificationResponse> 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 VerificationResponse to a ByteBuffer.
-
fromByteBuffer
static VerificationResponse fromByteBuffer(ByteBuffer b)
Deserializes a VerificationResponse from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
getConversion
Conversion<out Object> getConversion(int field)
-
newBuilder
static VerificationResponse.Builder newBuilder()
Creates a new VerificationResponse RecordBuilder.
-
newBuilder
static VerificationResponse.Builder newBuilder(VerificationResponse.Builder other)
Creates a new VerificationResponse RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.
-
newBuilder
static VerificationResponse.Builder newBuilder(VerificationResponse other)
Creates a new VerificationResponse RecordBuilder by copying an existing VerificationResponse instance.
- Parameters:
other
- The existing instance to copy.
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
-
-
-