Record Class CertParameters
java.lang.Object
java.lang.Record
org.graylog2.bootstrap.preflight.web.resources.model.CertParameters
-
Constructor Summary
ConstructorsConstructorDescriptionCertParameters(List<String> altNames, org.joda.time.DateTime expiration, boolean exclude) Creates an instance of aCertParametersrecord class. -
Method Summary
Modifier and TypeMethodDescriptionaltNames()Returns the value of thealtNamesrecord component.final booleanIndicates whether some other object is "equal to" this one.booleanexclude()Returns the value of theexcluderecord component.org.joda.time.DateTimeReturns the value of theexpirationrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CertParameters
Creates an instance of aCertParametersrecord class.- Parameters:
altNames- the value for thealtNamesrecord componentexpiration- the value for theexpirationrecord componentexclude- the value for theexcluderecord component
-
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
altNames
Returns the value of thealtNamesrecord component.- Returns:
- the value of the
altNamesrecord component
-
expiration
public org.joda.time.DateTime expiration()Returns the value of theexpirationrecord component.- Returns:
- the value of the
expirationrecord component
-
exclude
public boolean exclude()Returns the value of theexcluderecord component.- Returns:
- the value of the
excluderecord component
-