Interface ExternalIncludedIn
public interface ExternalIncludedIn
-
Method Summary
Modifier and TypeMethodDescriptiongetIncludedIn
(String project, String commit, Collection<String> tags, Collection<String> branches) Returns additional entries for IncludedInInfo as multimap where the key is the row title and the values are a list of systems that include the given commit (e.g.
-
Method Details
-
getIncludedIn
com.google.common.collect.ListMultimap<String,String> getIncludedIn(String project, String commit, Collection<String> tags, Collection<String> branches) Returns additional entries for IncludedInInfo as multimap where the key is the row title and the values are a list of systems that include the given commit (e.g. names of servers on which this commit is deployed).The tags and branches in which the commit is included are provided so that a RevWalk can be avoided when a system runs a certain tag or branch.
- Parameters:
project
- the name of the projectcommit
- the ID of the commit for which it should be checked if it is includedtags
- the tags that include the commitbranches
- the branches that include the commit- Returns:
- additional entries for IncludedInInfo
-