Interface SetReservationsChange

All Superinterfaces:
Change

public interface SetReservationsChange extends Change

This change is initiated by background processes after the Add Quantity, Remove Quantity, or Change Quantity update action is performed.


Example to create an instance using the builder pattern

     SetReservationsChange setReservationsChange = SetReservationsChange.builder()
             .change("{change}")
             .plusPreviousValue(previousValueBuilder -> previousValueBuilder)
             .plusNextValue(nextValueBuilder -> nextValueBuilder)
             .plusAddedItems(addedItemsBuilder -> addedItemsBuilder)
             .plusRemovedItems(removedItemsBuilder -> removedItemsBuilder)
             .build()
 
  • Field Details

    • SET_RESERVATIONS_CHANGE

      static final String SET_RESERVATIONS_CHANGE
      discriminator value for SetReservationsChange
      See Also:
  • Method Details

    • getChange

      @NotNull @NotNull String getChange()
      Description copied from interface: Change

      Type of change on a resource that is similar to the update action it relates to, where possible. It is not a unique identifier for the data structure, for example, the setDescription change can occur with a localized and non-localized representation.

      Records can be filtered by this value using the changes query parameter.

      Specified by:
      getChange in interface Change
      Returns:
      change
    • getType

      @NotNull @NotNull String getType()
      Description copied from interface: Change

      Unique discriminator value to reliably deserialize the data type.

      Specified by:
      getType in interface Change
      Returns:
      type
    • getPreviousValue

      @NotNull @Valid @NotNull @Valid List<Reservation> getPreviousValue()

      Value before the change.

      Returns:
      previousValue
    • getNextValue

      @NotNull @Valid @NotNull @Valid List<Reservation> getNextValue()

      Value after the change.

      Returns:
      nextValue
    • getAddedItems

      @NotNull @Valid @NotNull @Valid List<Reservation> getAddedItems()

      Elements added to the array.

      Returns:
      addedItems
    • getRemovedItems

      @NotNull @Valid @NotNull @Valid List<Reservation> getRemovedItems()

      Elements removed from the array.

      Returns:
      removedItems
    • setChange

      void setChange(String change)
      set change
      Specified by:
      setChange in interface Change
      Parameters:
      change - value to be set
    • setPreviousValue

      void setPreviousValue(Reservation... previousValue)

      Value before the change.

      Parameters:
      previousValue - values to be set
    • setPreviousValue

      void setPreviousValue(List<Reservation> previousValue)

      Value before the change.

      Parameters:
      previousValue - values to be set
    • setNextValue

      void setNextValue(Reservation... nextValue)

      Value after the change.

      Parameters:
      nextValue - values to be set
    • setNextValue

      void setNextValue(List<Reservation> nextValue)

      Value after the change.

      Parameters:
      nextValue - values to be set
    • setAddedItems

      void setAddedItems(Reservation... addedItems)

      Elements added to the array.

      Parameters:
      addedItems - values to be set
    • setAddedItems

      void setAddedItems(List<Reservation> addedItems)

      Elements added to the array.

      Parameters:
      addedItems - values to be set
    • setRemovedItems

      void setRemovedItems(Reservation... removedItems)

      Elements removed from the array.

      Parameters:
      removedItems - values to be set
    • setRemovedItems

      void setRemovedItems(List<Reservation> removedItems)

      Elements removed from the array.

      Parameters:
      removedItems - values to be set
    • of

      static SetReservationsChange of()
      factory method
      Returns:
      instance of SetReservationsChange
    • of

      factory method to create a shallow copy SetReservationsChange
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • copyDeep

      Specified by:
      copyDeep in interface Change
    • deepCopy

      @Nullable static SetReservationsChange deepCopy(@Nullable SetReservationsChange template)
      factory method to create a deep copy of SetReservationsChange
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static SetReservationsChangeBuilder builder()
      builder factory method for SetReservationsChange
      Returns:
      builder
    • builder

      create builder for SetReservationsChange instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withSetReservationsChange

      default <T> T withSetReservationsChange(Function<SetReservationsChange,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<SetReservationsChange> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference