Record Class EngineUpdater.EngineImportTaskConfig

java.lang.Object
java.lang.Record
ch.rswk.meta.engine.EngineUpdater.EngineImportTaskConfig
Enclosing class:
EngineUpdater

public static record EngineUpdater.EngineImportTaskConfig(Client.ClientConfig client, @Nullable Set<String> configQueries, @Nullable Set<String> fileQueries, @Nullable Set<String> groupQueries, @Nullable Set<String> metaQueries, @Nullable String password, String user, @Nullable Set<String> userQueries) extends Record
  • Field Details

    • client

      private final Client.ClientConfig client
      The field for the client record component.
    • configQueries

      private final @Nullable Set<String> configQueries
      The field for the configQueries record component.
    • fileQueries

      private final @Nullable Set<String> fileQueries
      The field for the fileQueries record component.
    • groupQueries

      private final @Nullable Set<String> groupQueries
      The field for the groupQueries record component.
    • metaQueries

      private final @Nullable Set<String> metaQueries
      The field for the metaQueries record component.
    • password

      private final @Nullable String password
      The field for the password record component.
    • user

      private final String user
      The field for the user record component.
    • userQueries

      private final @Nullable Set<String> userQueries
      The field for the userQueries record component.
  • Constructor Details

    • EngineImportTaskConfig

      public EngineImportTaskConfig(Client.ClientConfig client, @Nullable Set<String> configQueries, @Nullable Set<String> fileQueries, @Nullable Set<String> groupQueries, @Nullable Set<String> metaQueries, @Nullable String password, String user, @Nullable Set<String> userQueries)
      Creates an instance of a EngineImportTaskConfig record class.
      Parameters:
      client - the value for the client record component
      configQueries - the value for the configQueries record component
      fileQueries - the value for the fileQueries record component
      groupQueries - the value for the groupQueries record component
      metaQueries - the value for the metaQueries record component
      password - the value for the password record component
      user - the value for the user record component
      userQueries - the value for the userQueries record component
  • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • client

      public Client.ClientConfig client()
      Returns the value of the client record component.
      Returns:
      the value of the client record component
    • configQueries

      public @Nullable Set<String> configQueries()
      Returns the value of the configQueries record component.
      Returns:
      the value of the configQueries record component
    • fileQueries

      public @Nullable Set<String> fileQueries()
      Returns the value of the fileQueries record component.
      Returns:
      the value of the fileQueries record component
    • groupQueries

      public @Nullable Set<String> groupQueries()
      Returns the value of the groupQueries record component.
      Returns:
      the value of the groupQueries record component
    • metaQueries

      public @Nullable Set<String> metaQueries()
      Returns the value of the metaQueries record component.
      Returns:
      the value of the metaQueries record component
    • password

      public @Nullable String password()
      Returns the value of the password record component.
      Returns:
      the value of the password record component
    • user

      public String user()
      Returns the value of the user record component.
      Returns:
      the value of the user record component
    • userQueries

      public @Nullable Set<String> userQueries()
      Returns the value of the userQueries record component.
      Returns:
      the value of the userQueries record component