Record Class CSEventCertificateSigningFailed
java.lang.Object
java.lang.Record
com.io7m.certusine.vanilla.internal.events.CSEventCertificateSigningFailed
- Record Components:
domain- The domaincertificateName- The certificate name
- All Implemented Interfaces:
CSEventType
public record CSEventCertificateSigningFailed(CSDomain domain, CSCertificateName certificateName)
extends Record
implements CSEventType
Certificate signing failed during a renewal attempt.
-
Constructor Summary
ConstructorsConstructorDescriptionCSEventCertificateSigningFailed(CSDomain domain, CSCertificateName certificateName) Certificate signing failed during a renewal attempt. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecertificateNamerecord component.domain()Returns the value of thedomainrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanmessage()final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.certusine.vanilla.internal.events.CSEventType
isLogged
-
Constructor Details
-
CSEventCertificateSigningFailed
Certificate signing failed during a renewal attempt.- Parameters:
domain- The domaincertificateName- The certificate name
-
-
Method Details
-
message
- Specified by:
messagein interfaceCSEventType- Returns:
- The event message
-
isFailure
public boolean isFailure()- Specified by:
isFailurein interfaceCSEventType- Returns:
trueif the event indicates that an operation failed
-
attributes
- Specified by:
attributesin interfaceCSEventType- Returns:
- The event attributes for logging purposes
-
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). -
domain
-
certificateName
Returns the value of thecertificateNamerecord component.- Returns:
- the value of the
certificateNamerecord component
-