Uses of Interface
com.atlassian.bamboo.repository.PlanRepositoryLink

Packages that use PlanRepositoryLink
com.atlassian.bamboo.build.creation   
com.atlassian.bamboo.migration.stream   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.repository   
com.atlassian.bamboo.repository.migration   
 

Uses of PlanRepositoryLink in com.atlassian.bamboo.build.creation
 

Methods in com.atlassian.bamboo.build.creation that return types with arguments of type PlanRepositoryLink
 java.util.List<PlanRepositoryLink> RepositoryConfigHelper.extractRepositoriesFromConfiguration(BuildConfiguration buildConfiguration, Plan plan)
          Deprecated. since 3.3 to be removed as soon as possible - created only as temporary hack to make plan creation work
 java.util.List<PlanRepositoryLink> PlanCreationBean.getPlanRepositoriesBeingCreated()
           
 

Method parameters in com.atlassian.bamboo.build.creation with type arguments of type PlanRepositoryLink
 void PlanCreationBean.setPlanRepositoriesBeingCreated(java.util.List<PlanRepositoryLink> planRepositoriesBeingCreated)
           
 

Uses of PlanRepositoryLink in com.atlassian.bamboo.migration.stream
 

Fields in com.atlassian.bamboo.migration.stream declared as PlanRepositoryLink
protected  PlanRepositoryLink AbstractPlanMapper.planRepository
          Deprecated. since 3.3 can be removed when we no longer support upgrade from 3.2 and lower
 

Methods in com.atlassian.bamboo.migration.stream that return PlanRepositoryLink
protected  PlanRepositoryLink PlanRepositoryLinkMapper.createItemInstance(org.codehaus.staxmate.in.SMInputCursor inputCursor)
           
 

Methods in com.atlassian.bamboo.migration.stream with parameters of type PlanRepositoryLink
 void PlanRepositoryLinkMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<PlanRepositoryLink> planRepositories, PlanRepositoryLink object, long objectIndex, net.sf.hibernate.Session session)
           
protected  void PlanRepositoryLinkMapper.exportProperties(org.codehaus.staxmate.out.SMOutputElement outputElement, PlanRepositoryLink object, net.sf.hibernate.Session session, ExportDetailsBean exportDetailsBean)
           
protected  void PlanRepositoryLinkMapper.importProperties(PlanRepositoryLink object, org.codehaus.staxmate.in.SMInputCursor inputCursor, net.sf.hibernate.Session session)
           
protected  long AbstractPlanMapper.savePlanRepositoryWithDefinition(PlanRepositoryLink planRepository)
          Copy of RepositoryDefinitionManagerImpl.savePlanRepositoryWithDefinition(PlanRepositoryLink).
Not using RepositoryDefinitionManager to avoid PlanConfigurationAspect wrapping.
 

Method parameters in com.atlassian.bamboo.migration.stream with type arguments of type PlanRepositoryLink
 void PlanRepositoryLinkMapper.afterImportListItem(org.codehaus.staxmate.in.SMInputCursor inputCursor, java.util.List<PlanRepositoryLink> planRepositories, PlanRepositoryLink object, long objectIndex, net.sf.hibernate.Session session)
           
 

Uses of PlanRepositoryLink in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan with parameters of type PlanRepositoryLink
 void PlanConfigurationAspect.resetImmutablePlanCacheService(PlanRepositoryLink planRepositoryLink)
           
 

Uses of PlanRepositoryLink in com.atlassian.bamboo.repository
 

Classes in com.atlassian.bamboo.repository that implement PlanRepositoryLink
 class PlanRepositoryLinkImpl
           
 

Methods in com.atlassian.bamboo.repository that return PlanRepositoryLink
 PlanRepositoryLink RepositoryDefinitionManager.getPlanRepositoryLink(ImmutablePlan plan, long repositoryId)
          Get persistent representation of a relation between Plan and repository
 PlanRepositoryLink RepositoryDefinitionManagerImpl.getPlanRepositoryLink(ImmutablePlan plan, long repositoryId)
           
 PlanRepositoryLink PlanRepositoryLinkHibernateDao.getPlanRepositoryLink(PlanIdentifier plan, long repositoryId)
           
 PlanRepositoryLink PlanRepositoryLinkDao.getPlanRepositoryLink(PlanIdentifier plan, long repositoryId)
           
 

Methods in com.atlassian.bamboo.repository that return types with arguments of type PlanRepositoryLink
static com.google.common.base.Function<PlanRepositoryLink,RepositoryDefinitionImpl> RepositoryDefinitionImpl.fromRepositoryLink()
           
protected  java.util.List<PlanRepositoryLink> RepositoryConfigurationServiceImpl.getNewRepositoryList(java.util.List<PlanRepositoryLink> originalRepositories, PlanRepositoryLink toMove, long beforeId, long afterId)
           
 java.util.List<PlanRepositoryLink> PlanRepositoryLinkHibernateDao.getPlanRepositoryLinks(ImmutablePlan plan)
           
 java.util.List<PlanRepositoryLink> RepositoryDefinitionManager.getPlanRepositoryLinks(ImmutablePlan plan)
          Get persistent representation of relation between Plan and repositories
 java.util.List<PlanRepositoryLink> PlanRepositoryLinkDao.getPlanRepositoryLinks(ImmutablePlan plan)
           
 java.util.List<PlanRepositoryLink> RepositoryDefinitionManagerImpl.getPlanRepositoryLinks(ImmutablePlan plan)
           
 java.util.List<PlanRepositoryLink> PlanRepositoryLinkHibernateDao.getPlansUsingRepository(long repositoryId)
           
 java.util.List<PlanRepositoryLink> RepositoryDefinitionManager.getPlansUsingRepository(long repositoryId)
           
 java.util.List<PlanRepositoryLink> PlanRepositoryLinkDao.getPlansUsingRepository(long repositoryId)
           
 java.util.List<PlanRepositoryLink> RepositoryDefinitionManagerImpl.getPlansUsingRepository(long repositoryId)
           
static com.google.common.base.Predicate<PlanRepositoryLink> RepositoryPredicates.hasPlanRepositoryLinkEqualRepositoryId(long repositoryId)
          Get a predicate that returns true for PlanRepositoryLink which has equal repository id
 

Methods in com.atlassian.bamboo.repository with parameters of type PlanRepositoryLink
protected  java.util.List<PlanRepositoryLink> RepositoryConfigurationServiceImpl.getNewRepositoryList(java.util.List<PlanRepositoryLink> originalRepositories, PlanRepositoryLink toMove, long beforeId, long afterId)
           
 void PlanRepositoryLinkHibernateDao.removeRepositoryFromPlan(PlanRepositoryLink planRepository)
           
 void RepositoryDefinitionManager.removeRepositoryFromPlan(PlanRepositoryLink planRepository)
          Removes relation between repository and plan.
 void PlanRepositoryLinkDao.removeRepositoryFromPlan(PlanRepositoryLink planRepository)
          Remove single PlanRepositoryLink.
 void RepositoryDefinitionManagerImpl.removeRepositoryFromPlan(PlanRepositoryLink planRepository)
           
 void RepositoryDefinitionManager.savePlanRepositoryLink(PlanRepositoryLink planRepository)
           
 void RepositoryDefinitionManagerImpl.savePlanRepositoryLink(PlanRepositoryLink planRepository)
           
 long RepositoryDefinitionManager.savePlanRepositoryWithDefinition(PlanRepositoryLink planRepository)
          Saves plan to repository relation definition with cascade to RepositoryDataEntity
 long RepositoryDefinitionManagerImpl.savePlanRepositoryWithDefinition(PlanRepositoryLink planRepository)
           
 

Method parameters in com.atlassian.bamboo.repository with type arguments of type PlanRepositoryLink
protected  java.util.List<PlanRepositoryLink> RepositoryConfigurationServiceImpl.getNewRepositoryList(java.util.List<PlanRepositoryLink> originalRepositories, PlanRepositoryLink toMove, long beforeId, long afterId)
           
 void RepositoryDefinitionManager.savePlanRepositoryLinks(java.util.List<PlanRepositoryLink> planRepositories)
          Saves the collection of plan to repository relations.
 void RepositoryDefinitionManagerImpl.savePlanRepositoryLinks(java.util.List<PlanRepositoryLink> planRepositories)
           
 

Constructors in com.atlassian.bamboo.repository with parameters of type PlanRepositoryLink
RepositoryDefinitionImpl(PlanRepositoryLink input)
           
 

Uses of PlanRepositoryLink in com.atlassian.bamboo.repository.migration
 

Methods in com.atlassian.bamboo.repository.migration with parameters of type PlanRepositoryLink
static long RepositoryConfigurationConverter.stripAndSaveRepositoryConfiguration(PlanRepositoryLink planRepository, PlanRepositoryLinkDao planRepositoryLinkDao, RepositoryDefinitionDao repositoryDefinitionDao, Plan plan)
           
static long RepositoryConfigurationConverter.stripAndSaveRepositoryConfiguration(PlanRepositoryLink planRepository, RepositoryDefinitionManager repositoryDefinitionManager, Plan plan)
           
 



Copyright © 2013 Atlassian Software Systems Pty Ltd. All Rights Reserved.