Package net.corda.data.crypto.wire
Class CryptoSigningKeys.Builder
-
- All Implemented Interfaces:
-
org.apache.avro.data.RecordBuilder
public class CryptoSigningKeys.Builder extends SpecificRecordBuilderBase<T> implements RecordBuilder<T>
RecordBuilder for CryptoSigningKeys instances.
-
-
Field Summary
Fields Modifier and Type Field Description public List<CryptoSigningKey>
keys
-
Method Summary
Modifier and Type Method Description List<CryptoSigningKey>
getKeys()
Gets the value of the 'keys' field. CryptoSigningKeys.Builder
setKeys(List<CryptoSigningKey> value)
Sets the value of the 'keys' field. boolean
hasKeys()
Checks whether the 'keys' field has been set. CryptoSigningKeys.Builder
clearKeys()
Clears the value of the 'keys' field. CryptoSigningKeys
build()
-
-
Method Detail
-
getKeys
List<CryptoSigningKey> getKeys()
Gets the value of the 'keys' field. Collection of signing keys information
-
setKeys
CryptoSigningKeys.Builder setKeys(List<CryptoSigningKey> value)
Sets the value of the 'keys' field. Collection of signing keys information
- Parameters:
value
- The value of 'keys'.
-
hasKeys
boolean hasKeys()
Checks whether the 'keys' field has been set. Collection of signing keys information
-
clearKeys
CryptoSigningKeys.Builder clearKeys()
Clears the value of the 'keys' field. Collection of signing keys information
-
build
CryptoSigningKeys build()
-
-
-
-