Class SetOwnRegistrationStatus
-
- 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 SetOwnRegistrationStatus extends SpecificRecordBase implements SpecificRecord
Set the member registration status.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
SetOwnRegistrationStatus.Builder
RecordBuilder for SetOwnRegistrationStatus instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public String
registrationId
public RegistrationStatus
newStatus
-
Constructor Summary
Constructors Constructor Description SetOwnRegistrationStatus()
Default constructor. SetOwnRegistrationStatus(String registrationId, RegistrationStatus newStatus)
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. RegistrationStatus
getNewStatus()
Gets the value of the 'newStatus' field. void
setNewStatus(RegistrationStatus value)
Sets the value of the 'newStatus' field. static Schema
getClassSchema()
static BinaryMessageEncoder<SetOwnRegistrationStatus>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<SetOwnRegistrationStatus>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<SetOwnRegistrationStatus>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this SetOwnRegistrationStatus to a ByteBuffer. static SetOwnRegistrationStatus
fromByteBuffer(ByteBuffer b)
Deserializes a SetOwnRegistrationStatus from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
Conversion<out Object>
getConversion(int field)
void
put(int field$, Object value$)
static SetOwnRegistrationStatus.Builder
newBuilder()
Creates a new SetOwnRegistrationStatus RecordBuilder. static SetOwnRegistrationStatus.Builder
newBuilder(SetOwnRegistrationStatus.Builder other)
Creates a new SetOwnRegistrationStatus RecordBuilder by copying an existing Builder. static SetOwnRegistrationStatus.Builder
newBuilder(SetOwnRegistrationStatus other)
Creates a new SetOwnRegistrationStatus RecordBuilder by copying an existing SetOwnRegistrationStatus 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
-
SetOwnRegistrationStatus
SetOwnRegistrationStatus()
Default constructor.
-
SetOwnRegistrationStatus
SetOwnRegistrationStatus(String registrationId, RegistrationStatus newStatus)
All-args constructor.- Parameters:
registrationId
- ID of the registration to set the status.newStatus
- The new registration status.
-
-
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 to set the status.
- Parameters:
value
- the value to set.
-
getNewStatus
RegistrationStatus getNewStatus()
Gets the value of the 'newStatus' field.
-
setNewStatus
void setNewStatus(RegistrationStatus value)
Sets the value of the 'newStatus' field. The new registration status.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<SetOwnRegistrationStatus> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
-
getDecoder
static BinaryMessageDecoder<SetOwnRegistrationStatus> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
-
createDecoder
static BinaryMessageDecoder<SetOwnRegistrationStatus> 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 SetOwnRegistrationStatus to a ByteBuffer.
-
fromByteBuffer
static SetOwnRegistrationStatus fromByteBuffer(ByteBuffer b)
Deserializes a SetOwnRegistrationStatus 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 SetOwnRegistrationStatus.Builder newBuilder()
Creates a new SetOwnRegistrationStatus RecordBuilder.
-
newBuilder
static SetOwnRegistrationStatus.Builder newBuilder(SetOwnRegistrationStatus.Builder other)
Creates a new SetOwnRegistrationStatus RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.
-
newBuilder
static SetOwnRegistrationStatus.Builder newBuilder(SetOwnRegistrationStatus other)
Creates a new SetOwnRegistrationStatus RecordBuilder by copying an existing SetOwnRegistrationStatus instance.
- Parameters:
other
- The existing instance to copy.
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
-
-
-