Record Class PatchStatusContext

java.lang.Object
java.lang.Record
org.opendaylight.restconf.common.patch.PatchStatusContext

public record PatchStatusContext(@NonNull org.opendaylight.yangtools.yang.model.api.EffectiveModelContext context, @NonNull String patchId, @NonNull List<PatchStatusEntity> editCollection, boolean ok, @Nullable List<RestconfError> globalErrors) extends Record
Holder of patch status context.
  • Constructor Summary

    Constructors
    Constructor
    Description
    PatchStatusContext(@NonNull org.opendaylight.yangtools.yang.model.api.EffectiveModelContext context, @NonNull String patchId, @NonNull List<PatchStatusEntity> editCollection, boolean ok, @Nullable List<RestconfError> globalErrors)
    Creates an instance of a PatchStatusContext record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull org.opendaylight.yangtools.yang.model.api.EffectiveModelContext
    Returns the value of the context record component.
    Returns the value of the editCollection record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    @Nullable List<RestconfError>
    Returns the value of the globalErrors record component.
    final int
    Returns a hash code value for this object.
    boolean
    ok()
    Returns the value of the ok record component.
    @NonNull String
    Returns the value of the patchId record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • PatchStatusContext

      public PatchStatusContext(@NonNull org.opendaylight.yangtools.yang.model.api.EffectiveModelContext context, @NonNull String patchId, @NonNull List<PatchStatusEntity> editCollection, boolean ok, @Nullable List<RestconfError> globalErrors)
      Creates an instance of a PatchStatusContext record class.
      Parameters:
      context - the value for the context record component
      patchId - the value for the patchId record component
      editCollection - the value for the editCollection record component
      ok - the value for the ok record component
      globalErrors - the value for the globalErrors 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.
    • context

      public @NonNull org.opendaylight.yangtools.yang.model.api.EffectiveModelContext context()
      Returns the value of the context record component.
      Returns:
      the value of the context record component
    • patchId

      public @NonNull String patchId()
      Returns the value of the patchId record component.
      Returns:
      the value of the patchId record component
    • editCollection

      public @NonNull List<PatchStatusEntity> editCollection()
      Returns the value of the editCollection record component.
      Returns:
      the value of the editCollection record component
    • ok

      public boolean ok()
      Returns the value of the ok record component.
      Returns:
      the value of the ok record component
    • globalErrors

      public @Nullable List<RestconfError> globalErrors()
      Returns the value of the globalErrors record component.
      Returns:
      the value of the globalErrors record component