Record Class PluginConfiguration

java.lang.Object
java.lang.Record
de.julianweinelt.datacat.dbx.api.plugins.PluginConfiguration

public record PluginConfiguration(String pluginName, List<String> authors, String version, String mainClass, String description, String minAPIVersion, boolean usesEncryption, boolean usesDatabase, boolean storesSensitiveData, List<String> requires) extends Record
  • Constructor Details

    • PluginConfiguration

      public PluginConfiguration(String pluginName, List<String> authors, String version, String mainClass, String description, String minAPIVersion, boolean usesEncryption, boolean usesDatabase, boolean storesSensitiveData, List<String> requires)
      Creates an instance of a PluginConfiguration record class.
      Parameters:
      pluginName - the value for the pluginName record component
      authors - the value for the authors record component
      version - the value for the version record component
      mainClass - the value for the mainClass record component
      description - the value for the description record component
      minAPIVersion - the value for the minAPIVersion record component
      usesEncryption - the value for the usesEncryption record component
      usesDatabase - the value for the usesDatabase record component
      storesSensitiveData - the value for the storesSensitiveData record component
      requires - the value for the requires 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • pluginName

      public String pluginName()
      Returns the value of the pluginName record component.
      Returns:
      the value of the pluginName record component
    • authors

      public List<String> authors()
      Returns the value of the authors record component.
      Returns:
      the value of the authors record component
    • version

      public String version()
      Returns the value of the version record component.
      Returns:
      the value of the version record component
    • mainClass

      public String mainClass()
      Returns the value of the mainClass record component.
      Returns:
      the value of the mainClass record component
    • description

      public String description()
      Returns the value of the description record component.
      Returns:
      the value of the description record component
    • minAPIVersion

      public String minAPIVersion()
      Returns the value of the minAPIVersion record component.
      Returns:
      the value of the minAPIVersion record component
    • usesEncryption

      public boolean usesEncryption()
      Returns the value of the usesEncryption record component.
      Returns:
      the value of the usesEncryption record component
    • usesDatabase

      public boolean usesDatabase()
      Returns the value of the usesDatabase record component.
      Returns:
      the value of the usesDatabase record component
    • storesSensitiveData

      public boolean storesSensitiveData()
      Returns the value of the storesSensitiveData record component.
      Returns:
      the value of the storesSensitiveData record component
    • requires

      public List<String> requires()
      Returns the value of the requires record component.
      Returns:
      the value of the requires record component