Record Class RemoteReindexParams
java.lang.Object
java.lang.Record
org.graylog.plugins.views.storage.migration.RemoteReindexParams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theallowlistrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.hostname()Returns the value of thehostnamerecord component.indices()Returns the value of theindicesrecord component.password()Returns the value of thepasswordrecord component.booleanReturns the value of thesynchronousrecord component.intReturns the value of thethreadsCountrecord component.final StringtoString()Returns a string representation of this record class.booleanReturns the value of thetrustUnknownCertsrecord component.user()Returns the value of theuserrecord component.
-
Constructor Details
-
RemoteReindexParams
public RemoteReindexParams(String allowlist, URI hostname, String user, String password, List<String> indices, boolean synchronous, int threadsCount, boolean trustUnknownCerts) Creates an instance of aRemoteReindexParamsrecord class.- Parameters:
allowlist- the value for theallowlistrecord componenthostname- the value for thehostnamerecord componentuser- the value for theuserrecord componentpassword- the value for thepasswordrecord componentindices- the value for theindicesrecord componentsynchronous- the value for thesynchronousrecord componentthreadsCount- the value for thethreadsCountrecord componenttrustUnknownCerts- the value for thetrustUnknownCertsrecord 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 '=='. -
allowlist
Returns the value of theallowlistrecord component.- Returns:
- the value of the
allowlistrecord component
-
hostname
Returns the value of thehostnamerecord component.- Returns:
- the value of the
hostnamerecord component
-
user
Returns the value of theuserrecord component.- Returns:
- the value of the
userrecord component
-
password
Returns the value of thepasswordrecord component.- Returns:
- the value of the
passwordrecord component
-
indices
Returns the value of theindicesrecord component.- Returns:
- the value of the
indicesrecord component
-
synchronous
public boolean synchronous()Returns the value of thesynchronousrecord component.- Returns:
- the value of the
synchronousrecord component
-
threadsCount
public int threadsCount()Returns the value of thethreadsCountrecord component.- Returns:
- the value of the
threadsCountrecord component
-
trustUnknownCerts
public boolean trustUnknownCerts()Returns the value of thetrustUnknownCertsrecord component.- Returns:
- the value of the
trustUnknownCertsrecord component
-