Record Class LiveSyncJobDelegate.LiveSyncInfo

java.lang.Object
java.lang.Record
org.apache.syncope.core.provisioning.java.pushpull.LiveSyncJobDelegate.LiveSyncInfo
Enclosing class:
LiveSyncJobDelegate

protected static record LiveSyncJobDelegate.LiveSyncInfo(Provision provision, OrgUnit orgUnit, ObjectClass objectClass, AnyTypeKind anyTypeKind, PlainSchema uidOnCreate, SyncopePullResultHandler handler, OperationOptions options) extends Record
  • Constructor Details

    • LiveSyncInfo

      protected LiveSyncInfo(Provision provision, OrgUnit orgUnit, ObjectClass objectClass, AnyTypeKind anyTypeKind, PlainSchema uidOnCreate, SyncopePullResultHandler handler, OperationOptions options)
      Creates an instance of a LiveSyncInfo record class.
      Parameters:
      provision - the value for the provision record component
      orgUnit - the value for the orgUnit record component
      objectClass - the value for the objectClass record component
      anyTypeKind - the value for the anyTypeKind record component
      uidOnCreate - the value for the uidOnCreate record component
      handler - the value for the handler record component
      options - the value for the options 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.
    • provision

      public Provision provision()
      Returns the value of the provision record component.
      Returns:
      the value of the provision record component
    • orgUnit

      public OrgUnit orgUnit()
      Returns the value of the orgUnit record component.
      Returns:
      the value of the orgUnit record component
    • objectClass

      public ObjectClass objectClass()
      Returns the value of the objectClass record component.
      Returns:
      the value of the objectClass record component
    • anyTypeKind

      public AnyTypeKind anyTypeKind()
      Returns the value of the anyTypeKind record component.
      Returns:
      the value of the anyTypeKind record component
    • uidOnCreate

      public PlainSchema uidOnCreate()
      Returns the value of the uidOnCreate record component.
      Returns:
      the value of the uidOnCreate record component
    • handler

      public SyncopePullResultHandler handler()
      Returns the value of the handler record component.
      Returns:
      the value of the handler record component
    • options

      public OperationOptions options()
      Returns the value of the options record component.
      Returns:
      the value of the options record component