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

Packages that use Repository
com.atlassian.bamboo.build   
com.atlassian.bamboo.build.creation   
com.atlassian.bamboo.plan   
com.atlassian.bamboo.plan.branch   
com.atlassian.bamboo.plugins.hg   
com.atlassian.bamboo.repository   
com.atlassian.bamboo.repository.cvsimpl   
com.atlassian.bamboo.repository.nullrepository   
com.atlassian.bamboo.repository.perforce   
com.atlassian.bamboo.repository.svn   
com.atlassian.bamboo.upgrader.oldModel   
com.atlassian.bamboo.v2.build   
com.atlassian.bamboo.v2.build.repository   
com.atlassian.bamboo.ww2.actions.admin   
com.atlassian.bamboo.ww2.actions.build.admin   
com.atlassian.bamboo.ww2.actions.build.admin.create   
 

Uses of Repository in com.atlassian.bamboo.build
 

Fields in com.atlassian.bamboo.build declared as Repository
protected  Repository DefaultBuildDefinition.repository
           
 

Methods in com.atlassian.bamboo.build that return Repository
 Repository BuildObjectForTests.getRepository()
          Deprecated. Obtain the build's Repository.
 Repository DefaultBuildDefinition.getRepository()
           
 

Methods in com.atlassian.bamboo.build with parameters of type Repository
static BuildObjectForTests BuildFactoryForTests.createBuild(java.lang.String name, Repository repository)
          Deprecated. Create a build with the given name and repository
static BuildObjectForTests BuildFactoryForTests.createBuild(java.lang.String name, Repository repository, java.lang.String buildKey, java.util.Map<java.lang.String,java.lang.String> metadata)
          Deprecated.  
 

Constructors in com.atlassian.bamboo.build with parameters of type Repository
BuildObjectForTests(Repository repository, java.lang.String name)
          Deprecated. Create a build
BuildObjectForTests(Repository repository, java.lang.String name, java.lang.String emailAddress)
          Deprecated. Create a build
TestBuildObjectForTests(Repository repository, java.lang.String name)
           
TestBuildObjectForTests(Repository repository, java.lang.String name, java.lang.String emailAddress)
           
 

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

Methods in com.atlassian.bamboo.build.creation with parameters of type Repository
static org.apache.commons.configuration.XMLConfiguration RepositoryConfigHelper.prepareXmlConfiguration(Repository repository, WebRepositoryViewer webRepositoryViewer)
           
static java.lang.String RepositoryConfigHelper.prepareXmlConfigurationString(Repository repository, WebRepositoryViewer webRepositoryViewer)
           
 

Uses of Repository in com.atlassian.bamboo.plan
 

Methods in com.atlassian.bamboo.plan that return Repository
static Repository PlanHelper.getDefaultRepository(ImmutablePlan plan)
           
 

Methods in com.atlassian.bamboo.plan that return types with arguments of type Repository
static java.util.List<Repository> PlanHelper.getRepositories(ImmutablePlan plan)
           
 

Uses of Repository in com.atlassian.bamboo.plan.branch
 

Methods in com.atlassian.bamboo.plan.branch with parameters of type Repository
 java.lang.String BranchIntegrationHelper.getAuthorEmail(Repository repository)
           
 java.lang.String BranchIntegrationHelper.getAuthorName(Repository repository)
           
 java.lang.String BranchIntegrationHelper.getCommitterEmail(Repository repository)
           
 java.lang.String BranchIntegrationHelper.getCommitterName(Repository repository)
           
 java.lang.String BranchIntegrationHelper.getIntegrationCommitMessage(Repository repository)
           
 

Uses of Repository in com.atlassian.bamboo.plugins.hg
 

Classes in com.atlassian.bamboo.plugins.hg that implement Repository
 class BitbucketRepository
           
 class HgRepository
           
 

Methods in com.atlassian.bamboo.plugins.hg with parameters of type Repository
 boolean HgRepository.isRepositoryDifferent(Repository repository)
           
 boolean BitbucketRepository.isRepositoryDifferent(Repository repository)
           
 

Uses of Repository in com.atlassian.bamboo.repository
 

Subinterfaces of Repository in com.atlassian.bamboo.repository
 interface BranchAwareRepository
          Repository that supports setting and getting the current branch.
 interface BranchDetectionCapableRepository
          Repository that supports retrieving information about open branches.
 interface BranchingAwareRepository
          Repository that supports branching operation.
 interface BranchMergingAwareRepository
           
 interface CachingAwareRepository
          Should be implemented by repositories supporting caching of its method calls.
 interface CommitIsolationAwareRepository
          Whether the repository supports commits being broken up into individual builds
 interface CustomRevisionDataAwareRepository
          Repository that uses additional information for change detection.
 interface CustomVariableProviderRepository
          Allows the Repository implementation to provide variables specific to the repository.
 interface IncludeExcludeAwareRepository
           
 interface InitialBuildAwareRepository
          Allows the Repository to perform custom actions
 interface MavenPomAccessorCapableRepository
          Defines a repository which can setup itself using Maven SCM url as defined in http://maven.apache.org/scm/scms-overview.html
 interface PushCapableRepository
          Repository that supports pushing changes back to the remote repository.
 interface QuietPeriodAwareRepository
          Repositories that implement this method will continue to collect changes for every QuietPeriodAwareRepository.getQuietPeriod() up to QuietPeriodAwareRepository.getMaxRetries() times.
 interface SelectableAuthenticationRepository
           
 interface StandaloneRepository
          Represents Repository that does not require Plan for configuration and thus is 'visible' to Global Repository feature.
 interface TaggingAwareRepository
          Repository that supports tags.
 

Classes in com.atlassian.bamboo.repository that implement Repository
 class AbstractRepository
          This class provides common repository implementation code,
 class AbstractStandaloneRepository
          This class provides common repository implementation code for Repositories that can be used by Global Repository feature.
 

Methods in com.atlassian.bamboo.repository that return Repository
 Repository RepositoryManager.getNewRepositoryInstance(java.lang.String repositoryKey)
          Takes in a repository key and creates a new Repository for that key
 Repository DefaultRepositoryManager.getNewRepositoryInstance(java.lang.String key)
           
 Repository RepositoryDefinitionForTest.getRepository()
           
 Repository RepositoryData.getRepository()
           
 Repository CacheId.getRepository()
           
 Repository RepositoryDataImpl.getRepository()
           
 

Methods in com.atlassian.bamboo.repository that return types with arguments of type Repository
 java.util.List<Repository> RepositoryManager.getRepositories()
          Retuns a list of available Repository objects
 java.util.List<Repository> DefaultRepositoryManager.getRepositories()
           
 

Constructors in com.atlassian.bamboo.repository with parameters of type Repository
CacheId(Repository repository, java.lang.String... ids)
           
RepositoryDefinitionForTest(Repository repository, WebRepositoryViewer webRepositoryViewer)
           
 

Uses of Repository in com.atlassian.bamboo.repository.cvsimpl
 

Classes in com.atlassian.bamboo.repository.cvsimpl that implement Repository
 class CVSRepository
          This class provides a CVS implemention of the Repository interface.
 

Methods in com.atlassian.bamboo.repository.cvsimpl with parameters of type Repository
 boolean CVSRepository.isRepositoryDifferent(Repository repository)
           
 

Uses of Repository in com.atlassian.bamboo.repository.nullrepository
 

Classes in com.atlassian.bamboo.repository.nullrepository that implement Repository
 class NullRepository
           
 

Methods in com.atlassian.bamboo.repository.nullrepository with parameters of type Repository
 boolean NullRepository.isRepositoryDifferent(Repository repository)
           
 

Uses of Repository in com.atlassian.bamboo.repository.perforce
 

Classes in com.atlassian.bamboo.repository.perforce that implement Repository
 class PerforceRepository
          This class provides a Perforce implementation of the Repository interface.
 

Methods in com.atlassian.bamboo.repository.perforce with parameters of type Repository
 boolean PerforceRepository.isRepositoryDifferent(Repository repository)
           
 

Uses of Repository in com.atlassian.bamboo.repository.svn
 

Classes in com.atlassian.bamboo.repository.svn that implement Repository
 class SvnRepository
          This class provides a Subversion repository for Bamboo.
 

Methods in com.atlassian.bamboo.repository.svn with parameters of type Repository
 boolean SvnRepository.isRepositoryDifferent(Repository repository)
           
 

Uses of Repository in com.atlassian.bamboo.upgrader.oldModel
 

Fields in com.atlassian.bamboo.upgrader.oldModel declared as Repository
 Repository OldBuild.myRepository
           
 

Uses of Repository in com.atlassian.bamboo.v2.build
 

Methods in com.atlassian.bamboo.v2.build that return Repository
 Repository BuildPlanDefinition.getRepository()
          Deprecated. since 3.3 obsolete due to introduction of Multiple Repositories; use Plan#getRepositoryDefinitions()
 

Uses of Repository in com.atlassian.bamboo.v2.build.repository
 

Subinterfaces of Repository in com.atlassian.bamboo.v2.build.repository
 interface PostConfigurableRepository
          Deprecated. since 3.4 not compatible with Global Repository feature.
 interface RepositoryEventAware
          An interface that allows the repository to do something before and after the checkout / update occurs
 interface RequirementsAwareRepository
           
 

Methods in com.atlassian.bamboo.v2.build.repository with parameters of type Repository
 boolean RepositoryV2.isRepositoryDifferent(Repository repository)
          Checks if the current repo is the same as the given repository
 

Uses of Repository in com.atlassian.bamboo.ww2.actions.admin
 

Methods in com.atlassian.bamboo.ww2.actions.admin that return Repository
 Repository ViewAllRepositories.RepoId.getRepository()
           
 

Methods in com.atlassian.bamboo.ww2.actions.admin that return types with arguments of type Repository
 java.util.List<Repository> ImportMavenPlanAction.getRepositories()
           
 

Uses of Repository in com.atlassian.bamboo.ww2.actions.build.admin
 

Methods in com.atlassian.bamboo.ww2.actions.build.admin that return types with arguments of type Repository
 java.util.List<Repository> ViewBuildConfiguration.getRepository()
           
 

Uses of Repository in com.atlassian.bamboo.ww2.actions.build.admin.create
 

Methods in com.atlassian.bamboo.ww2.actions.build.admin.create that return Repository
 Repository RepositoryOption.getRepository()
           
 

Methods in com.atlassian.bamboo.ww2.actions.build.admin.create that return types with arguments of type Repository
 java.util.List<Repository> UIConfigSupport.getRepositories()
           
 java.util.List<Repository> UIConfigBeanImpl.getRepositories()
           
 

Constructors in com.atlassian.bamboo.ww2.actions.build.admin.create with parameters of type Repository
RepositoryOption(Repository repository)
           
 



Copyright © 2012 Atlassian. All Rights Reserved.