Record Class CSCertificateOutputData
java.lang.Object
java.lang.Record
com.io7m.certusine.api.CSCertificateOutputData
- Record Components:
domainName- The domainname- The certificate namepemEncodedPublicKey- The PEM-encoded public keypemEncodedPrivateKey- The PEM-encoded private keypemEncodedCertificate- The PEM-encoded certificatepemEncodedFullChain- The PEM-encoded full certificate chain
-
Constructor Summary
ConstructorsConstructorDescriptionCSCertificateOutputData(String domainName, CSCertificateName name, String pemEncodedPublicKey, String pemEncodedPrivateKey, String pemEncodedCertificate, String pemEncodedFullChain) The data passed to a certificate output. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedomainNamerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.Returns the value of thepemEncodedCertificaterecord component.Returns the value of thepemEncodedFullChainrecord component.Returns the value of thepemEncodedPrivateKeyrecord component.Returns the value of thepemEncodedPublicKeyrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CSCertificateOutputData
public CSCertificateOutputData(String domainName, CSCertificateName name, String pemEncodedPublicKey, String pemEncodedPrivateKey, String pemEncodedCertificate, String pemEncodedFullChain) The data passed to a certificate output.- Parameters:
domainName- The domainname- The certificate namepemEncodedPublicKey- The PEM-encoded public keypemEncodedPrivateKey- The PEM-encoded private keypemEncodedCertificate- The PEM-encoded certificatepemEncodedFullChain- The PEM-encoded full certificate chain
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
domainName
Returns the value of thedomainNamerecord component.- Returns:
- the value of the
domainNamerecord component
-
name
-
pemEncodedPublicKey
Returns the value of thepemEncodedPublicKeyrecord component.- Returns:
- the value of the
pemEncodedPublicKeyrecord component
-
pemEncodedPrivateKey
Returns the value of thepemEncodedPrivateKeyrecord component.- Returns:
- the value of the
pemEncodedPrivateKeyrecord component
-
pemEncodedCertificate
Returns the value of thepemEncodedCertificaterecord component.- Returns:
- the value of the
pemEncodedCertificaterecord component
-
pemEncodedFullChain
Returns the value of thepemEncodedFullChainrecord component.- Returns:
- the value of the
pemEncodedFullChainrecord component
-