Uses of Class
com.atlassian.bamboo.repository.RepositoryException

Packages that use RepositoryException
com.atlassian.bamboo.build   
com.atlassian.bamboo.builder   
com.atlassian.bamboo.repository   
com.atlassian.bamboo.repository.cvsimpl   
com.atlassian.bamboo.repository.perforce   
com.atlassian.bamboo.repository.svn   
com.atlassian.bamboo.v2.build   
com.atlassian.bamboo.v2.build.repository   
com.atlassian.bamboo.v2.build.task   
com.atlassian.bamboo.v2.trigger   
 

Uses of RepositoryException in com.atlassian.bamboo.build
 

Methods in com.atlassian.bamboo.build that throw RepositoryException
 java.io.File BuildObjectForTests.getSourceCodeDirectory()
           
 java.io.File Build.getSourceCodeDirectory()
          Returns a file representing the source directory from the Repository
 java.io.File DefaultBuild.getSourceCodeDirectory()
           
 

Uses of RepositoryException in com.atlassian.bamboo.builder
 

Methods in com.atlassian.bamboo.builder that throw RepositoryException
 void AbstractBuilder.executeBuild(BuildContext buildContext, ReadOnlyCapabilitySet capabilitySet)
           
 

Uses of RepositoryException in com.atlassian.bamboo.repository
 

Methods in com.atlassian.bamboo.repository that throw RepositoryException
 java.io.File AbstractRepository.getSourceCodeDirectory(java.lang.String planKey)
          For Subversion, we use the build name's directory within the system's working directory
 

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

Methods in com.atlassian.bamboo.repository.cvsimpl that throw RepositoryException
 BuildChanges CVSRepository.collectChangesSinceLastBuild(java.lang.String planKey, java.lang.String lastVcsRevisionKey)
          Gets the code since the link
 java.lang.String CVSRepository.retrieveSourceCode(java.lang.String planKey, java.lang.String vcsRevisionKey)
           
 

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

Methods in com.atlassian.bamboo.repository.perforce that throw RepositoryException
 BuildChanges PerforceRepository.collectChangesSinceLastBuild(java.lang.String planKey, java.lang.String lastVcsRevisionKey)
          Access the perforce repository to retrieve change logs since the lastVCSRevisionKey
 void PerforceRepository.getAllSourceCode(Build build)
          Deprecated. 
 java.util.List<Commit> PerforceManager.getChangeLogEntries(com.tek42.perforce.Depot perforceDepot, java.util.List<java.lang.Integer> changeNumbers)
          Retrieves a list of Bamboo Commit Files based on list of change numbers
 java.util.List<java.lang.Integer> PerforceManager.getChangeNumbersFromRevision(com.tek42.perforce.Depot perforceDepot, java.lang.String clientViewDepot, int lastRevisionInBamboo)
           
 java.util.List<java.lang.Integer> PerforceManager.getChangeNumsBetweenRevisions(com.tek42.perforce.Depot perforceDepot, java.lang.String depot, int firstRevision, int secondRevision)
          Retrieves a list of change log numbers between two revision numbers for the depot.
 java.util.Collection<ChangeLogEntry> PerforceRepository.getChangesSinceLastBuild(Build build, java.util.Date lastBuildStartTime)
          Deprecated. 
 java.lang.String PerforceManager.getClientRoot(com.tek42.perforce.Depot perforceDepot)
          Retrieves the workspace root as defined in the client configuration
 int PerforceManager.getLatestChangeNumber(com.tek42.perforce.Depot perforceDepot, java.lang.String depot, int latestRevisionInBamboo)
          retrieves the latest change list number on the perforce server for comparison to the one stored in Bamboo
 java.io.File PerforceRepository.getSourceCodeDirectory(java.lang.String planKey)
          Retrieves the location that the build will occur, If the workspace is managed this includes the source code directory specified by bamboo followed by the directory structure as indicated in the client view.
 java.lang.String PerforceRepository.retrieveSourceCode(java.lang.String planKey, java.lang.String vcsRevisionKey)
          Checkout the sourcecode as at the vcsRevisionKey, if revisionKey is null source will be checked out from head
 void PerforceManager.setupSync(com.tek42.perforce.Depot perforceDepot, java.io.File sourceDirectory)
          Sets the directory for perforce to check the code out to.
 void PerforceManager.syncToHead(com.tek42.perforce.Depot perforceDepot, java.lang.String depot, boolean forceSync)
          Syncs the source code to head
 void PerforceManager.syncToRevision(com.tek42.perforce.Depot perforceDepot, java.lang.String depot, int revisionNumber, boolean forceSync)
          Syncs the source code to a specific revision number
 

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

Methods in com.atlassian.bamboo.repository.svn that throw RepositoryException
 BuildChanges SvnRepository.collectChangesSinceLastBuild(java.lang.String planKey, java.lang.String lastVcsRevisionKey)
           
 java.lang.String SvnRepository.retrieveSourceCode(java.lang.String planKey, java.lang.String vcsRevisionKey)
           
 

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

Methods in com.atlassian.bamboo.v2.build that throw RepositoryException
 void BuilderV2.executeBuild(BuildContext buildContext, ReadOnlyCapabilitySet capabilitySet)
          Runs the build, and updates the build results in the build context.
 

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

Methods in com.atlassian.bamboo.v2.build.repository that throw RepositoryException
 BuildChanges RepositoryV2.collectChangesSinceLastBuild(java.lang.String planKey, java.lang.String lastVcsRevisionKey)
          Collects the changes since the lastVcsRevisionKey
 java.io.File RepositoryV2.getSourceCodeDirectory(java.lang.String planKey)
          Where has the source code been checked out?
 java.lang.String RepositoryV2.retrieveSourceCode(java.lang.String planKey, java.lang.String vcsRevisionKey)
          Checks out the latest source code to an appropriate repository
 

Uses of RepositoryException in com.atlassian.bamboo.v2.build.task
 

Methods in com.atlassian.bamboo.v2.build.task that throw RepositoryException
 BuildContext CheckoutUpdateForBuild.call()
           
 

Uses of RepositoryException in com.atlassian.bamboo.v2.trigger
 

Methods in com.atlassian.bamboo.v2.trigger that throw RepositoryException
 BuildChanges ChangeDetectionManager.collectChangesBetween(java.lang.String planKey, RepositoryV2 repository, java.lang.String fromVcsRevisionKey, java.lang.String toVcsRevisionKey)
          Given a RepositoryV2 finds the BuildChanges object that captures all changes that occurred between the fromVcsRevisionKey to toVcsRevisionKey
 BuildChanges DefaultChangeDetectionManager.collectChangesBetween(java.lang.String planKey, RepositoryV2 repository, java.lang.String fromVcsRevisionKey, java.lang.String toVcsRevisionKey)
           
 BuildChanges ChangeDetectionManager.collectChangesSinceLastBuild(java.lang.String planKey, RepositoryV2 repository, java.lang.String lastVcsRevisionKey)
          Given a RepositoryV2 finds the BuildChanges object that captures all changes that occurred since the lastVcsRevisionKey to the current latest found on the repository
 BuildChanges DefaultChangeDetectionManager.collectChangesSinceLastBuild(java.lang.String planKey, RepositoryV2 repository, java.lang.String lastVcsRevisionKey)
           
 



Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.