Record Class CAPreferenceServerBookmark

java.lang.Object
java.lang.Record
com.io7m.cardant.client.preferences.api.CAPreferenceServerBookmark
Record Components:
name - The bookmark name
host - The server host
port - The server port
isHTTPs - true if https is to be enabled
loginTimeout - The login timeout
commandTimeout - The command timeout
credentials - The credentials

public record CAPreferenceServerBookmark(String name, String host, int port, boolean isHTTPs, Duration loginTimeout, Duration commandTimeout, CAPreferenceServerCredentialsType credentials) extends Record
A server bookmark.
  • Constructor Details

  • 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.
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • host

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

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

      public boolean isHTTPs()
      Returns the value of the isHTTPs record component.
      Returns:
      the value of the isHTTPs record component
    • loginTimeout

      public Duration loginTimeout()
      Returns the value of the loginTimeout record component.
      Returns:
      the value of the loginTimeout record component
    • commandTimeout

      public Duration commandTimeout()
      Returns the value of the commandTimeout record component.
      Returns:
      the value of the commandTimeout record component
    • credentials

      public CAPreferenceServerCredentialsType credentials()
      Returns the value of the credentials record component.
      Returns:
      the value of the credentials record component