Package org.graylog2.plugin.certificates
Record Class RenewalPolicy
java.lang.Object
java.lang.Record
org.graylog2.plugin.certificates.RenewalPolicy
public record RenewalPolicy(@NotNull RenewalPolicy.Mode mode, @NotNull String certificateLifetime)
extends Record
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionRenewalPolicy(@NotNull RenewalPolicy.Mode mode, @NotNull String certificateLifetime) Creates an instance of aRenewalPolicyrecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull StringReturns the value of thecertificateLifetimerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull RenewalPolicy.Modemode()Returns the value of themoderecord component.@NotNull Durationfinal StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
RenewalPolicy
public RenewalPolicy(@NotNull @NotNull RenewalPolicy.Mode mode, @NotNull @NotNull String certificateLifetime) Creates an instance of aRenewalPolicyrecord class.- Parameters:
mode- the value for themoderecord componentcertificateLifetime- the value for thecertificateLifetimerecord component
-
-
Method Details
-
parsedCertificateLifetime
-
getRenewalThreshold
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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). -
mode
Returns the value of themoderecord component.- Returns:
- the value of the
moderecord component
-
certificateLifetime
Returns the value of thecertificateLifetimerecord component.- Returns:
- the value of the
certificateLifetimerecord component
-