Uses of Class
org.apache.continuum.buildmanager.BuildManagerException

Packages that use BuildManagerException
org.apache.continuum.buildmanager   
org.apache.maven.continuum.web.action   
 

Uses of BuildManagerException in org.apache.continuum.buildmanager
 

Methods in org.apache.continuum.buildmanager that throw BuildManagerException
 void ParallelBuildsManager.addOverallBuildQueue(BuildQueue buildQueue)
           
 void BuildsManager.addOverallBuildQueue(BuildQueue buildQueue)
          Add an overall build queue.
 void ParallelBuildsManager.buildProject(int projectId, BuildDefinition buildDefinition, String projectName, BuildTrigger buildTrigger, ScmResult scmResult, int projectGroupId)
           
 void BuildsManager.buildProject(int projectId, BuildDefinition buildDefinition, String projectName, BuildTrigger buildTrigger, ScmResult scmResult, int projectGroupId)
          Build the project using the specified build definition.
 void ParallelBuildsManager.buildProjects(List<Project> projects, Map<Integer,BuildDefinition> projectsBuildDefinitionsMap, BuildTrigger buildTrigger, Map<Integer,ScmResult> scmResultMap, int projectGroupId)
           
 void BuildsManager.buildProjects(List<Project> projects, Map<Integer,BuildDefinition> projectsBuildDefinitionsMap, BuildTrigger buildTrigger, Map<Integer,ScmResult> scmResultMap, int projectGroupId)
          Build projects using their corresponding build definitions.
 boolean ParallelBuildsManager.cancelAllBuilds()
           
 boolean BuildsManager.cancelAllBuilds()
          Cancels all the builds in all the overall queues.
 boolean ParallelBuildsManager.cancelAllCheckouts()
           
 boolean BuildsManager.cancelAllCheckouts()
           
 boolean ParallelBuildsManager.cancelAllPrepareBuilds()
           
 boolean BuildsManager.cancelAllPrepareBuilds()
          Cancels all the prepare builds in all overall queues
 boolean ParallelBuildsManager.cancelBuild(int projectId)
           
 boolean BuildsManager.cancelBuild(int projectId)
          Cancels the specified project's build.
 boolean ParallelBuildsManager.cancelBuildInQueue(int buildQueueId)
           
 boolean BuildsManager.cancelBuildInQueue(int buildQueueId)
          Cancels the current build on the specified overall queue.
 boolean ParallelBuildsManager.cancelCheckout(int projectId)
           
 boolean BuildsManager.cancelCheckout(int projectId)
           
 boolean ParallelBuildsManager.cancelPrepareBuild(int projectId)
           
 boolean BuildsManager.cancelPrepareBuild(int projectId)
          Cancels the specified project prepare build
 boolean ParallelBuildsManager.cancelPrepareBuild(int projectGroupId, int scmRootId)
           
 boolean BuildsManager.cancelPrepareBuild(int projectGroupId, int scmRootId)
          Cancels the specified project group prepare build
 void ParallelBuildsManager.checkoutProject(int projectId, String projectName, File workingDirectory, String scmRootUrl, String scmUsername, String scmPassword, BuildDefinition defaultBuildDefinition, List<Project> subProjects)
           
 void BuildsManager.checkoutProject(int projectId, String projectName, File workingDirectory, String scmRootUrl, String scmUsername, String scmPassword, BuildDefinition defaultBuildDefinition, List<Project> subProjects)
          Adds the project to the checkout queue of the overall build queue with the least amount of tasks queued.
 Map<String,BuildProjectTask> ParallelBuildsManager.getCurrentBuilds()
           
 Map<String,BuildProjectTask> BuildsManager.getCurrentBuilds()
          Returns all the build tasks currently being executed.
 Map<String,CheckOutTask> ParallelBuildsManager.getCurrentCheckouts()
           
 Map<String,CheckOutTask> BuildsManager.getCurrentCheckouts()
          Returns all the checkout tasks currently being executed.
 Map<String,PrepareBuildProjectsTask> ParallelBuildsManager.getCurrentProjectInPrepareBuild()
           
 Map<String,PrepareBuildProjectsTask> BuildsManager.getCurrentProjectInPrepareBuild()
          Return currently preparing build project.
 OverallBuildQueue ParallelBuildsManager.getOverallBuildQueueWhereProjectsInGroupAreQueued(int projectGroupId)
           
 Map<String,List<BuildProjectTask>> ParallelBuildsManager.getProjectsInBuildQueues()
           
 Map<String,List<BuildProjectTask>> BuildsManager.getProjectsInBuildQueues()
          Returns all the overall build queues together with a list of the build tasks in it's build queue.
 Map<String,List<CheckOutTask>> ParallelBuildsManager.getProjectsInCheckoutQueues()
           
 Map<String,List<CheckOutTask>> BuildsManager.getProjectsInCheckoutQueues()
          Returns all the overall build queues together with a list of checkout tasks in it's checkout queue.
 Map<String,List<PrepareBuildProjectsTask>> ParallelBuildsManager.getProjectsInPrepareBuildQueue()
           
 Map<String,List<PrepareBuildProjectsTask>> BuildsManager.getProjectsInPrepareBuildQueue()
          Return all projects in prepare build queue.
 boolean ParallelBuildsManager.isAnyProjectCurrentlyBeingCheckedOut(int[] projectIds)
           
 boolean BuildsManager.isAnyProjectCurrentlyBeingCheckedOut(int[] projectIds)
          Checks if at least one of the projects is currently being checked out.
 boolean ParallelBuildsManager.isAnyProjectCurrentlyBuilding(int[] projectIds)
           
 boolean BuildsManager.isAnyProjectCurrentlyBuilding(int[] projectIds)
          Checks if at least one of the projects is currently building.
 boolean ParallelBuildsManager.isAnyProjectCurrentlyPreparingBuild(int[] projectIds)
           
 boolean BuildsManager.isAnyProjectCurrentlyPreparingBuild(int[] projectIds)
          Checks if at least one of the projects is currently preparing build
 boolean ParallelBuildsManager.isInAnyBuildQueue(int projectId)
           
 boolean BuildsManager.isInAnyBuildQueue(int projectId)
          Checks whether the project build is queued.
 boolean ParallelBuildsManager.isInAnyBuildQueue(int projectId, int buildDefinitionId)
           
 boolean BuildsManager.isInAnyBuildQueue(int projectId, int buildDefinitionId)
          Checks whether the project build using the specified build definition is queued.
 boolean ParallelBuildsManager.isInAnyCheckoutQueue(int projectId)
           
 boolean BuildsManager.isInAnyCheckoutQueue(int projectId)
          Checks whether the project checkout is already queued.
 boolean ParallelBuildsManager.isInPrepareBuildQueue(int projectId)
           
 boolean BuildsManager.isInPrepareBuildQueue(int projectId)
          Checks whether the project is already in the prepare-build queue.
 boolean ParallelBuildsManager.isInPrepareBuildQueue(int projectGroupId, int scmRootId)
           
 boolean BuildsManager.isInPrepareBuildQueue(int projectGroupId, int scmRootId)
          Checks where the project group is already in the prepare-build queue
 boolean ParallelBuildsManager.isProjectCurrentlyBeingCheckedOut(int projectId)
           
 boolean BuildsManager.isProjectCurrentlyBeingCheckedOut(int projectId)
          Checks whether project is currently being checked out.
 boolean ParallelBuildsManager.isProjectCurrentlyPreparingBuild(int projectId)
           
 boolean BuildsManager.isProjectCurrentlyPreparingBuild(int projectId)
          Checks whether project is currently preparing build
 boolean ParallelBuildsManager.isProjectGroupCurrentlyPreparingBuild(int projectGroupId, int scmRootId)
           
 boolean BuildsManager.isProjectGroupCurrentlyPreparingBuild(int projectGroupId, int scmRootId)
          Checks whether project group is currently preparing build
 boolean ParallelBuildsManager.isProjectInAnyCurrentBuild(int projectId)
           
 boolean BuildsManager.isProjectInAnyCurrentBuild(int projectId)
          Checks whether the project is currently being built.
 void ParallelBuildsManager.prepareBuildProjects(Map<Integer,Integer> projectsBuildDefinitionsMap, BuildTrigger buildTrigger, int projectGroupId, String projectGroupName, String scmRootAddress, int scmRootId)
           
 void BuildsManager.prepareBuildProjects(Map<Integer,Integer> projectsBuildDefinitionsMap, BuildTrigger buildTrigger, int projectGroupId, String projectGroupName, String scmRootAddress, int scmRootId)
          Adds the projects in the prepare-build-queue.
 void ParallelBuildsManager.removeOverallBuildQueue(int overallBuildQueueId)
           
 void BuildsManager.removeOverallBuildQueue(int overallBuildQueueId)
          Remove an overall build queue.
 void ParallelBuildsManager.removeProjectFromBuildQueue(int projectId)
           
 void BuildsManager.removeProjectFromBuildQueue(int projectId)
          Removes the project from the build queue.
 void ParallelBuildsManager.removeProjectFromBuildQueue(int projectId, int buildDefinitionId, BuildTrigger buildTrigger, String projectName, int projectGroupId)
           
 void BuildsManager.removeProjectFromBuildQueue(int projectId, int buildDefinitionId, BuildTrigger buildTrigger, String projectName, int projectGroupId)
          Removes the project built using the specified build definition from the build queue.
 void ParallelBuildsManager.removeProjectFromCheckoutQueue(int projectId)
           
 void BuildsManager.removeProjectFromCheckoutQueue(int projectId)
          Removes the project from the checkout queue.
 boolean ParallelBuildsManager.removeProjectFromPrepareBuildQueue(int projectGroupId, int scmRootId)
           
 boolean BuildsManager.removeProjectFromPrepareBuildQueue(int projectGroupId, int scmRootId)
          Remove a project from a prepare build queue.
 boolean ParallelBuildsManager.removeProjectGroupFromPrepareBuildQueue(int projectGroupId, String scmRootAddress)
           
 boolean BuildsManager.removeProjectGroupFromPrepareBuildQueue(int projectGroupId, String scmRootAddress)
           
 void ParallelBuildsManager.removeProjectsFromBuildQueueWithHashcodes(int[] hashcodes)
           
 void BuildsManager.removeProjectsFromBuildQueueWithHashcodes(int[] hascodes)
          Removes a set of projects using the specified hashcodes from the build queues.
 void ParallelBuildsManager.removeProjectsFromCheckoutQueueWithHashcodes(int[] hashcodes)
           
 void BuildsManager.removeProjectsFromCheckoutQueueWithHashcodes(int[] hashcodes)
          Removes a set of projects using the specified hashcodes from the checkout queues.
 void ParallelBuildsManager.removeProjectsFromPrepareBuildQueueWithHashCodes(int[] hashCodes)
           
 void BuildsManager.removeProjectsFromPrepareBuildQueueWithHashCodes(int[] hashCodes)
          Removes a set of projects using the specified hashcodes from the prepare build queues.
 

Uses of BuildManagerException in org.apache.maven.continuum.web.action
 

Methods in org.apache.maven.continuum.web.action that throw BuildManagerException
protected  boolean AbstractBuildAction.canRemoveBuildResult(BuildResult buildResult)
           
 String BuildResultAction.execute()
           
protected  int CancelBuildAction.getCurrentProjectIdBuilding()
           
 



Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.