Record Class PemPaths
java.lang.Object
java.lang.Record
org.eclipse.jetty.quic.quiche.PemPaths
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecertificateChainPemPath
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theprivateKeyPemPath
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thetrustedCertificatesPemPath
record component.
-
Constructor Details
-
PemPaths
public PemPaths(Path privateKeyPemPath, Path certificateChainPemPath, Path trustedCertificatesPemPath) Creates an instance of aPemPaths
record class.- Parameters:
privateKeyPemPath
- the value for theprivateKeyPemPath
record componentcertificateChainPemPath
- the value for thecertificateChainPemPath
record componenttrustedCertificatesPemPath
- the value for thetrustedCertificatesPemPath
record component
-
-
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)
. -
privateKeyPemPath
Returns the value of theprivateKeyPemPath
record component.- Returns:
- the value of the
privateKeyPemPath
record component
-
certificateChainPemPath
Returns the value of thecertificateChainPemPath
record component.- Returns:
- the value of the
certificateChainPemPath
record component
-
trustedCertificatesPemPath
Returns the value of thetrustedCertificatesPemPath
record component.- Returns:
- the value of the
trustedCertificatesPemPath
record component
-