Class GatewayTruststore
-
- 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 GatewayTruststore extends SpecificRecordBase implements SpecificRecord
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
GatewayTruststore.Builder
RecordBuilder for GatewayTruststore instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public HoldingIdentity
sourceIdentity
public List<String>
trustedCertificates
-
Constructor Summary
Constructors Constructor Description GatewayTruststore()
Default constructor. GatewayTruststore(HoldingIdentity sourceIdentity, List<String> trustedCertificates)
All-args constructor.
-
Method Summary
Modifier and Type Method Description HoldingIdentity
getSourceIdentity()
Gets the value of the 'sourceIdentity' field. void
setSourceIdentity(HoldingIdentity value)
Sets the value of the 'sourceIdentity' field. List<String>
getTrustedCertificates()
Gets the value of the 'trustedCertificates' field. void
setTrustedCertificates(List<String> value)
Sets the value of the 'trustedCertificates' field. static Schema
getClassSchema()
static BinaryMessageEncoder<GatewayTruststore>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<GatewayTruststore>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<GatewayTruststore>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this GatewayTruststore to a ByteBuffer. static GatewayTruststore
fromByteBuffer(ByteBuffer b)
Deserializes a GatewayTruststore from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static GatewayTruststore.Builder
newBuilder()
Creates a new GatewayTruststore RecordBuilder. static GatewayTruststore.Builder
newBuilder(GatewayTruststore.Builder other)
Creates a new GatewayTruststore RecordBuilder by copying an existing Builder. static GatewayTruststore.Builder
newBuilder(GatewayTruststore other)
Creates a new GatewayTruststore RecordBuilder by copying an existing GatewayTruststore 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
-
GatewayTruststore
GatewayTruststore()
Default constructor.
-
GatewayTruststore
GatewayTruststore(HoldingIdentity sourceIdentity, List<String> trustedCertificates)
All-args constructor.- Parameters:
sourceIdentity
- The source identity (x500 name + group ID)trustedCertificates
- Collection of certificates in PEM format
-
-
Method Detail
-
getSourceIdentity
HoldingIdentity getSourceIdentity()
Gets the value of the 'sourceIdentity' field.
-
setSourceIdentity
void setSourceIdentity(HoldingIdentity value)
Sets the value of the 'sourceIdentity' field. The source identity (x500 name + group ID)
- Parameters:
value
- the value to set.
-
getTrustedCertificates
List<String> getTrustedCertificates()
Gets the value of the 'trustedCertificates' field.
-
setTrustedCertificates
void setTrustedCertificates(List<String> value)
Sets the value of the 'trustedCertificates' field. Collection of certificates in PEM format
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<GatewayTruststore> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
-
getDecoder
static BinaryMessageDecoder<GatewayTruststore> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
-
createDecoder
static BinaryMessageDecoder<GatewayTruststore> 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 GatewayTruststore to a ByteBuffer.
-
fromByteBuffer
static GatewayTruststore fromByteBuffer(ByteBuffer b)
Deserializes a GatewayTruststore 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 GatewayTruststore.Builder newBuilder()
Creates a new GatewayTruststore RecordBuilder.
-
newBuilder
static GatewayTruststore.Builder newBuilder(GatewayTruststore.Builder other)
Creates a new GatewayTruststore RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.
-
newBuilder
static GatewayTruststore.Builder newBuilder(GatewayTruststore other)
Creates a new GatewayTruststore RecordBuilder by copying an existing GatewayTruststore 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)
-
-
-
-