Class TrackingEntryManagerImpl

    • Constructor Detail

      • TrackingEntryManagerImpl

        @Autowired
        public TrackingEntryManagerImpl​(TrackingEntryDao trackingEntryDao)
    • Method Detail

      • getTrackingEntryByResultId

        public TrackingEntry getTrackingEntryByResultId​(long resultId)
        Description copied from interface: TrackingEntryManager
        Find the tracking entry for a given chain result.
        Specified by:
        getTrackingEntryByResultId in interface TrackingEntryManager
        Parameters:
        resultId - of the result
        Returns:
        tracking entry for the given result. null if none exists (e.g if result is green!)
      • getActiveTrackingEntryForPlan

        public TrackingEntry getActiveTrackingEntryForPlan​(long id)
        Description copied from interface: TrackingEntryManager
        Returns the currently open tracking entry for plan. Only one tracking entry is allowed open per plan at any one time. If multiple are found. They are all closed and this method will return null. Will also return null if there is no currently active entry (i.e the plan is currently passing)
        Specified by:
        getActiveTrackingEntryForPlan in interface TrackingEntryManager
        Parameters:
        id - of the plan
        Returns:
        currently active tracking entry for the plan if there is one
      • getActiveTrackingEntriesForUser

        @NotNull
        public @NotNull Collection<TrackingEntry> getActiveTrackingEntriesForUser​(@NotNull
                                                                                  @NotNull String username)
        Description copied from interface: TrackingEntryManager
        Find any active tracking entries for a given user. This represents the plans they currently are responsible for
        Specified by:
        getActiveTrackingEntriesForUser in interface TrackingEntryManager
        Parameters:
        username - of the user
        Returns:
        any active tracking entries for the given user.
      • addResult

        public void addResult​(@NotNull
                              @NotNull TrackingEntry entry,
                              long resultId,
                              int buildNumber)
        Description copied from interface: TrackingEntryManager
        Add a result to an existing tracking entry
        Specified by:
        addResult in interface TrackingEntryManager
        Parameters:
        entry - to add result to
        resultId - id of the result to add
      • addUser

        public void addUser​(@NotNull
                            @NotNull TrackingEntry entry,
                            @NotNull
                            @NotNull String user,
                            @Nullable
                            @Nullable String userWhoUpdated)
        Description copied from interface: TrackingEntryManager
        Add a responsible user to an existing tracking entry
        Specified by:
        addUser in interface TrackingEntryManager
        Parameters:
        entry - to add user too
        user - to add
        userWhoUpdated - user who updated the responsibility entry. Null if responsibility has been automatically assigned
      • closeTrackingEntry

        public void closeTrackingEntry​(@NotNull
                                       @NotNull TrackingEntry entry)
        Description copied from interface: TrackingEntryManager
        Close a tracking entry. Essentially you do this when it no longer needs attention. e.g. if the build is now green.
        Specified by:
        closeTrackingEntry in interface TrackingEntryManager
        Parameters:
        entry - to close
      • createTrackingEntry

        @NotNull
        public @NotNull TrackingEntry createTrackingEntry​(long planId,
                                                          boolean active)
        Description copied from interface: TrackingEntryManager
        Create a brand new tracking entry for this plan. Will be active by default, ensure there are no other active tracking entries before creating a new one
        Specified by:
        createTrackingEntry in interface TrackingEntryManager
        Parameters:
        planId - of plan
        active - should the new entry be created as active entry
        Returns:
        created tracking entry
      • removeTrackingForPlan

        public void removeTrackingForPlan​(long idOfDeletedItem)
        Description copied from interface: TrackingEntryManager
        Remove any tracking information for a given plan
        Specified by:
        removeTrackingForPlan in interface TrackingEntryManager
        Parameters:
        idOfDeletedItem - db id of the plan
      • removeTrackingForResult

        public void removeTrackingForResult​(long idOfDeletedItem)
        Description copied from interface: TrackingEntryManager
        Remove any tracking information for a given result
        Specified by:
        removeTrackingForResult in interface TrackingEntryManager
        Parameters:
        idOfDeletedItem - db if of the result