Record Class Scheduler.ScheduleMultipartModel

java.lang.Object
java.lang.Record
org.frankframework.console.controllers.Scheduler.ScheduleMultipartModel
Enclosing class:
Scheduler

public static record Scheduler.ScheduleMultipartModel(String name, String group, String cron, Integer interval, String adapter, String receiver, String configuration, String listener, String lockkey, String message, String description, Boolean persistent, Boolean locker) extends Record
  • Constructor Details

    • ScheduleMultipartModel

      public ScheduleMultipartModel(String name, String group, String cron, Integer interval, String adapter, String receiver, String configuration, String listener, String lockkey, String message, String description, Boolean persistent, Boolean locker)
      Creates an instance of a ScheduleMultipartModel record class.
      Parameters:
      name - the value for the name record component
      group - the value for the group record component
      cron - the value for the cron record component
      interval - the value for the interval record component
      adapter - the value for the adapter record component
      receiver - the value for the receiver record component
      configuration - the value for the configuration record component
      listener - the value for the listener record component
      lockkey - the value for the lockkey record component
      message - the value for the message record component
      description - the value for the description record component
      persistent - the value for the persistent record component
      locker - the value for the locker 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.
    • name

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

      public String group()
      Returns the value of the group record component.
      Returns:
      the value of the group record component
    • cron

      public String cron()
      Returns the value of the cron record component.
      Returns:
      the value of the cron record component
    • interval

      public Integer interval()
      Returns the value of the interval record component.
      Returns:
      the value of the interval record component
    • adapter

      public String adapter()
      Returns the value of the adapter record component.
      Returns:
      the value of the adapter record component
    • receiver

      public String receiver()
      Returns the value of the receiver record component.
      Returns:
      the value of the receiver record component
    • configuration

      public String configuration()
      Returns the value of the configuration record component.
      Returns:
      the value of the configuration record component
    • listener

      public String listener()
      Returns the value of the listener record component.
      Returns:
      the value of the listener record component
    • lockkey

      public String lockkey()
      Returns the value of the lockkey record component.
      Returns:
      the value of the lockkey record component
    • message

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

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

      public Boolean persistent()
      Returns the value of the persistent record component.
      Returns:
      the value of the persistent record component
    • locker

      public Boolean locker()
      Returns the value of the locker record component.
      Returns:
      the value of the locker record component