Class CpkIdentifier
-
- 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 CpkIdentifier extends SpecificRecordBase implements SpecificRecord
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
CpkIdentifier.Builder
RecordBuilder for CpkIdentifier instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public String
name
public String
version
public SecureHash
signerSummaryHash
-
Constructor Summary
Constructors Constructor Description CpkIdentifier()
Default constructor. CpkIdentifier(String name, String version, SecureHash signerSummaryHash)
All-args constructor.
-
Method Summary
Modifier and Type Method Description String
getName()
Gets the value of the 'name' field. void
setName(String value)
Sets the value of the 'name' field. String
getVersion()
Gets the value of the 'version' field. void
setVersion(String value)
Sets the value of the 'version' field. SecureHash
getSignerSummaryHash()
Gets the value of the 'signerSummaryHash' field. void
setSignerSummaryHash(SecureHash value)
Sets the value of the 'signerSummaryHash' field. static Schema
getClassSchema()
static BinaryMessageEncoder<CpkIdentifier>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<CpkIdentifier>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<CpkIdentifier>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this CpkIdentifier to a ByteBuffer. static CpkIdentifier
fromByteBuffer(ByteBuffer b)
Deserializes a CpkIdentifier from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static CpkIdentifier.Builder
newBuilder()
Creates a new CpkIdentifier RecordBuilder. static CpkIdentifier.Builder
newBuilder(CpkIdentifier.Builder other)
Creates a new CpkIdentifier RecordBuilder by copying an existing Builder. static CpkIdentifier.Builder
newBuilder(CpkIdentifier other)
Creates a new CpkIdentifier RecordBuilder by copying an existing CpkIdentifier 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
-
CpkIdentifier
CpkIdentifier()
Default constructor.
-
CpkIdentifier
CpkIdentifier(String name, String version, SecureHash signerSummaryHash)
All-args constructor.- Parameters:
name
- The new value for nameversion
- The new value for versionsignerSummaryHash
- The new value for signerSummaryHash
-
-
Method Detail
-
setName
void setName(String value)
Sets the value of the 'name' field.
- Parameters:
value
- the value to set.
-
getVersion
String getVersion()
Gets the value of the 'version' field.
-
setVersion
void setVersion(String value)
Sets the value of the 'version' field.
- Parameters:
value
- the value to set.
-
getSignerSummaryHash
SecureHash getSignerSummaryHash()
Gets the value of the 'signerSummaryHash' field.
-
setSignerSummaryHash
void setSignerSummaryHash(SecureHash value)
Sets the value of the 'signerSummaryHash' field.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<CpkIdentifier> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
-
getDecoder
static BinaryMessageDecoder<CpkIdentifier> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
-
createDecoder
static BinaryMessageDecoder<CpkIdentifier> 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 CpkIdentifier to a ByteBuffer.
-
fromByteBuffer
static CpkIdentifier fromByteBuffer(ByteBuffer b)
Deserializes a CpkIdentifier 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 CpkIdentifier.Builder newBuilder()
Creates a new CpkIdentifier RecordBuilder.
-
newBuilder
static CpkIdentifier.Builder newBuilder(CpkIdentifier.Builder other)
Creates a new CpkIdentifier RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.
-
newBuilder
static CpkIdentifier.Builder newBuilder(CpkIdentifier other)
Creates a new CpkIdentifier RecordBuilder by copying an existing CpkIdentifier 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)
-
-
-
-