public class RepositoryDefinitionHibernateDao extends BambooHibernateObjectWithOidDao<RepositoryDataEntity> implements RepositoryDefinitionDao
Constructor and Description |
---|
RepositoryDefinitionHibernateDao(TransactionAndHibernateTemplate bambooTransactionHibernateTemplate) |
Modifier and Type | Method and Description |
---|---|
long |
countAll() |
long |
countAllByParent(Long parentId) |
Long |
countAllProjectsRepositories()
Count project, non-deleted repositories.
|
long |
countRepositoriesByPluginKey(String pluginKey) |
long |
countTopLevelGlobalRepositories()
Count global, non-deleted repositories without any parent repository.
|
void |
delete(RepositoryDataEntity repositoryDataEntity)
Removes the given entity from the database
|
Collection<? extends RepositoryDataEntity> |
findAll() |
Collection<? extends RepositoryDataEntity> |
findAll(int firstResult,
int maxResults) |
Collection<? extends RepositoryDataEntity> |
findAllByParent(Long parentId,
int firstResult,
int maxResults) |
List<Long> |
findAllProjectsIdsUsingProjectRepositories()
Get IDs of all projects which are using project repositories.
|
Set<Long> |
findAllRepositoryIds() |
Set<Long> |
findAllTopLevelRepositoriesIds()
Get ids of all repositories that doesn't have parent repository (are either linked or are created on plan level)
|
RepositoryDataEntityImpl |
findById(long id) |
RepositoryDataEntity |
findLinkedRepositoryByName(String name)
Find a linked repository by name;
|
RepositoryDataEntity |
findProjectRepositoryByName(String name,
Long projectId)
Find a project repository by name in project associated with given projectId.
|
List<RepositoryDataEntity> |
findRepositoriesByPluginKey(String pluginKey) |
List<RepositoryDataEntity> |
findRepositoriesByPluginKey(String pluginKey,
int firstResult,
int maxResults) |
List<RepositoryDataEntity> |
getGlobalRepositoryDefinitions() |
BambooEntityOid |
getMaxRepositoryOid(int serverKey)
Returns the max
BambooEntityOid that's currently in use of BambooEntityType.REPOSITORY type, with
the given server key. |
Collection<RepositoryDataEntity> |
getPrivateRepositoryDefinitionsByPlan(Plan plan) |
List<RepositoryDataEntity> |
getProjectRepositoryDefinitions(Long projectId)
Get all project repositories associated with given projectId.
|
List<RepositoryDataEntity> |
getTopLevelGlobalRepositories(int firstResult,
int maxResults)
Return a list of global, non-deleted repositories without any parent repository.
|
void |
markForDeletionByParentId(long parentId)
Mark all direct children of repository with given id for deletion.
|
void |
markForDeletionByProjectId(long projectId)
Mark all project repositories with given projectId for deletion.
|
void |
removeRepositoryIfUnused(RepositoryDataEntity repositoryDataEntity) |
void |
removeUnusedRepositories() |
void |
save(RepositoryDataEntity repositoryDataEntity)
Saves the given entity.
|
findByOid
countAll, countWithRestriction, deleteAll, executeCountQuery, findAll, findById, merge, saveAll
getCacheAwareHibernateTemplate
checkDaoConfig, createHibernateTemplate, currentSession, getHibernateTemplate, getSessionFactory, setHibernateTemplate, setSessionFactory
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
findByOid
countAll, countWithRestriction, deleteAll, findAll, findById, merge, saveAll
public RepositoryDefinitionHibernateDao(TransactionAndHibernateTemplate bambooTransactionHibernateTemplate)
@Nullable public RepositoryDataEntityImpl findById(long id)
findById
in interface RepositoryDefinitionDao
@NotNull public Collection<? extends RepositoryDataEntity> findAll()
findAll
in interface RepositoryDefinitionDao
@NotNull public Collection<? extends RepositoryDataEntity> findAll(int firstResult, int maxResults)
findAll
in interface RepositoryDefinitionDao
@NotNull public Collection<? extends RepositoryDataEntity> findAllByParent(@Nullable Long parentId, int firstResult, int maxResults)
findAllByParent
in interface RepositoryDefinitionDao
public long countAll()
countAll
in interface RepositoryDefinitionDao
public long countAllByParent(@Nullable Long parentId)
countAllByParent
in interface RepositoryDefinitionDao
public long countTopLevelGlobalRepositories()
RepositoryDefinitionDao
countTopLevelGlobalRepositories
in interface RepositoryDefinitionDao
@NotNull public List<RepositoryDataEntity> getTopLevelGlobalRepositories(int firstResult, int maxResults)
RepositoryDefinitionDao
getTopLevelGlobalRepositories
in interface RepositoryDefinitionDao
public long countRepositoriesByPluginKey(@NotNull String pluginKey)
@NotNull public List<RepositoryDataEntity> findRepositoriesByPluginKey(@NotNull String pluginKey)
findRepositoriesByPluginKey
in interface RepositoryDefinitionDao
@NotNull public List<RepositoryDataEntity> findRepositoriesByPluginKey(@NotNull String pluginKey, int firstResult, int maxResults)
@NotNull public List<RepositoryDataEntity> getGlobalRepositoryDefinitions()
getGlobalRepositoryDefinitions
in interface RepositoryDefinitionDao
@NotNull public List<RepositoryDataEntity> getProjectRepositoryDefinitions(Long projectId)
RepositoryDefinitionDao
getProjectRepositoryDefinitions
in interface RepositoryDefinitionDao
@NotNull public Long countAllProjectsRepositories()
RepositoryDefinitionDao
countAllProjectsRepositories
in interface RepositoryDefinitionDao
@NotNull public List<Long> findAllProjectsIdsUsingProjectRepositories()
RepositoryDefinitionDao
findAllProjectsIdsUsingProjectRepositories
in interface RepositoryDefinitionDao
@NotNull public Collection<RepositoryDataEntity> getPrivateRepositoryDefinitionsByPlan(Plan plan)
getPrivateRepositoryDefinitionsByPlan
in interface RepositoryDefinitionDao
public void removeRepositoryIfUnused(RepositoryDataEntity repositoryDataEntity)
removeRepositoryIfUnused
in interface RepositoryDefinitionDao
public void delete(@NotNull RepositoryDataEntity repositoryDataEntity)
BambooObjectDao
delete
in interface BambooObjectDao<RepositoryDataEntity>
delete
in class BambooHibernateObjectDao<RepositoryDataEntity>
repositoryDataEntity
- entity to be removedpublic void save(@NotNull RepositoryDataEntity repositoryDataEntity)
BambooObjectDao
EntityObject
this method will:
- update EntityObject.getLastModificationDate()
- set EntityObject.getCreationDate()
if the object has not been savedsave
in interface BambooObjectDao<RepositoryDataEntity>
save
in class BambooHibernateObjectDao<RepositoryDataEntity>
repositoryDataEntity
- entity to be savedpublic void removeUnusedRepositories()
removeUnusedRepositories
in interface RepositoryDefinitionDao
@NotNull public Set<Long> findAllRepositoryIds()
findAllRepositoryIds
in interface RepositoryDefinitionDao
@NotNull public Set<Long> findAllTopLevelRepositoriesIds()
RepositoryDefinitionDao
findAllTopLevelRepositoriesIds
in interface RepositoryDefinitionDao
@Nullable public BambooEntityOid getMaxRepositoryOid(int serverKey)
RepositoryDefinitionDao
BambooEntityOid
that's currently in use of BambooEntityType.REPOSITORY
type, with
the given server key.
Returns null if no OIDs are in use of this type with the given server key.getMaxRepositoryOid
in interface RepositoryDefinitionDao
@Nullable public RepositoryDataEntity findLinkedRepositoryByName(@NotNull String name)
RepositoryDefinitionDao
findLinkedRepositoryByName
in interface RepositoryDefinitionDao
public void markForDeletionByParentId(long parentId)
RepositoryDefinitionDao
markForDeletionByParentId
in interface RepositoryDefinitionDao
public void markForDeletionByProjectId(long projectId)
RepositoryDefinitionDao
markForDeletionByProjectId
in interface RepositoryDefinitionDao
@Nullable public RepositoryDataEntity findProjectRepositoryByName(@NotNull String name, @NotNull Long projectId)
RepositoryDefinitionDao
findProjectRepositoryByName
in interface RepositoryDefinitionDao
Copyright © 2021 Atlassian Software Systems Pty Ltd. All rights reserved.