Record Class Database.OpenSearchDashboard

java.lang.Object
java.lang.Record
com.github.cowwoc.digitalocean.resource.Database.OpenSearchDashboard
Record Components:
uri - the URI of the dashboard
hostname - the hostname of the dashboard
port - the port of the dashboard
username - the name of the default user
password - the password of the default user
ssl - true if the connection should be made over SSL
Enclosing class:
Database

public static record Database.OpenSearchDashboard(URI uri, String hostname, int port, String username, String password, boolean ssl) extends Record
Connection details for an OpenSearch dashboard.
  • Constructor Details

    • OpenSearchDashboard

      public OpenSearchDashboard(URI uri, String hostname, int port, String username, String password, boolean ssl)
      Creates a new instance.
      Parameters:
      uri - the URI of the dashboard
      hostname - the hostname of the dashboard
      port - the port of the dashboard
      username - the name of the default user
      password - the password of the default user
      ssl - true if the connection should be made over SSL
      Throws:
      NullPointerException - if any of the arguments are null
      IllegalArgumentException - if:
      • if any of the arguments contain leading or trailing whitespace or are empty.
      • if port is negative or zero.
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • uri

      public URI uri()
      Returns the value of the uri record component.
      Returns:
      the value of the uri record component
    • hostname

      public String hostname()
      Returns the value of the hostname record component.
      Returns:
      the value of the hostname record component
    • port

      public int port()
      Returns the value of the port record component.
      Returns:
      the value of the port record component
    • username

      public String username()
      Returns the value of the username record component.
      Returns:
      the value of the username record component
    • password

      public String password()
      Returns the value of the password record component.
      Returns:
      the value of the password record component
    • ssl

      public boolean ssl()
      Returns the value of the ssl record component.
      Returns:
      the value of the ssl record component