Package com.atlassian.bamboo.tag
Interface VcsTagDao
-
- All Superinterfaces:
BambooObjectDao<VcsTag>
- All Known Implementing Classes:
VcsTagDaoImpl
public interface VcsTagDao extends BambooObjectDao<VcsTag>
Dao for VcsTag entity (VCS_TAG table)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<VcsTag>
findByRepositoryDataId(long repositoryDataId)
returns all saved tags for given repositoryList<Long>
getAllActiveRepositoryIds()
returns id values of all repositories for which tag detection is initializedvoid
saveAllByRepositoryDataId(List<VcsTag> tags, long repositoryDataId, boolean replaceMode)
Saves new tags for a given repository.-
Methods inherited from interface com.atlassian.bamboo.persistence3.BambooObjectDao
countAll, countWithRestriction, delete, deleteAll, findAll, findById, merge, save, saveAll
-
-