Interface IDtoToolReservation

All Known Implementing Classes:
DtoToolReservation

public interface IDtoToolReservation
A stretch of time when (a number of copies of) a tool is removed from the available quantity.
  • Method Summary

    Modifier and Type
    Method
    Description
    ...until this time (end greater than start).
    Number of reserved copies of this tool.
    From this time...
    void
    setEnd(Long end)
    ...until this time (end greater than start).
    void
    setQuantity(Integer quantity)
    Number of reserved copies of this tool.
    void
    setStart(Long start)
    From this time...
  • Method Details

    • getStart

      Long getStart()
      From this time... (end greater than start)
    • setStart

      void setStart(Long start)
      From this time... (end greater than start)
    • getEnd

      Long getEnd()
      ...until this time (end greater than start).
    • setEnd

      void setEnd(Long end)
      ...until this time (end greater than start).
    • getQuantity

      Integer getQuantity()
      Number of reserved copies of this tool.
    • setQuantity

      void setQuantity(Integer quantity)
      Number of reserved copies of this tool.