Class CryptoSignatureParameterSpec.Builder
-
- All Implemented Interfaces:
-
org.apache.avro.data.RecordBuilder
public class CryptoSignatureParameterSpec.Builder extends SpecificRecordBuilderBase<T> implements RecordBuilder<T>
RecordBuilder for CryptoSignatureParameterSpec instances.
-
-
Field Summary
Fields Modifier and Type Field Description public String
className
public ByteBuffer
bytes
-
Method Summary
Modifier and Type Method Description String
getClassName()
Gets the value of the 'className' field. CryptoSignatureParameterSpec.Builder
setClassName(String value)
Sets the value of the 'className' field. ByteBuffer
getBytes()
Gets the value of the 'bytes' field. CryptoSignatureParameterSpec.Builder
setBytes(ByteBuffer value)
Sets the value of the 'bytes' field. boolean
hasClassName()
Checks whether the 'className' field has been set. CryptoSignatureParameterSpec.Builder
clearClassName()
Clears the value of the 'className' field. boolean
hasBytes()
Checks whether the 'bytes' field has been set. CryptoSignatureParameterSpec.Builder
clearBytes()
Clears the value of the 'bytes' field. CryptoSignatureParameterSpec
build()
-
-
Method Detail
-
getClassName
String getClassName()
Gets the value of the 'className' field. A fully qualified parameter class name, like java.security.spec.PSSParameterSpec.
-
setClassName
CryptoSignatureParameterSpec.Builder setClassName(String value)
Sets the value of the 'className' field. A fully qualified parameter class name, like java.security.spec.PSSParameterSpec.
- Parameters:
value
- The value of 'className'.
-
getBytes
ByteBuffer getBytes()
Gets the value of the 'bytes' field. Serialized parameters.
-
setBytes
CryptoSignatureParameterSpec.Builder setBytes(ByteBuffer value)
Sets the value of the 'bytes' field. Serialized parameters.
- Parameters:
value
- The value of 'bytes'.
-
hasClassName
boolean hasClassName()
Checks whether the 'className' field has been set. A fully qualified parameter class name, like java.security.spec.PSSParameterSpec.
-
clearClassName
CryptoSignatureParameterSpec.Builder clearClassName()
Clears the value of the 'className' field. A fully qualified parameter class name, like java.security.spec.PSSParameterSpec.
-
hasBytes
boolean hasBytes()
Checks whether the 'bytes' field has been set. Serialized parameters.
-
clearBytes
CryptoSignatureParameterSpec.Builder clearBytes()
Clears the value of the 'bytes' field. Serialized parameters.
-
build
CryptoSignatureParameterSpec build()
-
-
-
-