Record Class ModelPlanResult

java.lang.Object
java.lang.Record
network.ike.plugin.scaffold.ModelPlanResult
Record Components:
action - the action the applier should take
managedElements - per-element provenance for the lockfile entry after action is applied; never null. The stored list is unmodifiable.

public record ModelPlanResult(TierAction action, List<ManagedElement> managedElements) extends Record
Plan-time decision from a ModelAdapter.

Model-managed entries differ from file-based tiers: the lockfile records per-element provenance in ManagedElement rather than a whole-file checksum. The adapter therefore returns both the TierAction (for the scaffold applier's file I/O) and the element list (for the lockfile update).

For TierAction.UpToDate and TierAction.Skip the element list describes what is (or would be) present; for TierAction.Write it describes what will be in place after the write succeeds.

  • Constructor Details

    • ModelPlanResult

      public ModelPlanResult(TierAction action, List<ManagedElement> managedElements)
      Canonical constructor with defensive copying.
  • 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.
    • action

      public TierAction action()
      Returns the value of the action record component.
      Returns:
      the value of the action record component
    • managedElements

      public List<ManagedElement> managedElements()
      Returns the value of the managedElements record component.
      Returns:
      the value of the managedElements record component