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 thecertificateChainPemPathrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theprivateKeyPemPathrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thetrustedCertificatesPemPathrecord component. 
- 
Constructor Details
- 
PemPaths
public PemPaths(Path privateKeyPemPath, Path certificateChainPemPath, Path trustedCertificatesPemPath) Creates an instance of aPemPathsrecord class.- Parameters:
 privateKeyPemPath- the value for theprivateKeyPemPathrecord componentcertificateChainPemPath- the value for thecertificateChainPemPathrecord componenttrustedCertificatesPemPath- the value for thetrustedCertificatesPemPathrecord 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 theprivateKeyPemPathrecord component.- Returns:
 - the value of the 
privateKeyPemPathrecord component 
 - 
certificateChainPemPath
Returns the value of thecertificateChainPemPathrecord component.- Returns:
 - the value of the 
certificateChainPemPathrecord component 
 - 
trustedCertificatesPemPath
Returns the value of thetrustedCertificatesPemPathrecord component.- Returns:
 - the value of the 
trustedCertificatesPemPathrecord component 
 
 -