Uses of Interface
com.atlassian.bamboo.project.Project

Packages that use Project
com.atlassian.bamboo.build   
com.atlassian.bamboo.labels   
com.atlassian.bamboo.plugins.rest.model.project   
com.atlassian.bamboo.project   
com.atlassian.bamboo.rest   
com.atlassian.bamboo.ww2.actions.admin.bulk   
com.atlassian.bamboo.ww2.actions.build.admin   
com.atlassian.bamboo.ww2.actions.labels   
com.atlassian.bamboo.ww2.actions.project   
com.atlassian.bamboo.ww2.aware   
 

Uses of Project in com.atlassian.bamboo.build
 

Classes in com.atlassian.bamboo.build that implement Project
 class BuildObjectForTests
          Information about a build under Continuous Integration.
 class TestBuildObjectForTests
           
 

Methods in com.atlassian.bamboo.build that return Project
 Project BuildObjectForTests.getProject()
           
 Project BuildDefinitionForProject.getProject()
           
 Project Build.getProject()
          Returns the parent Project
 Project DefaultBuildDefinitionForProject.getProject()
           
 Project DefaultBuild.getProject()
           
 Project BuildManager.getProjectById(long id)
          Returns the build given the id
 Project HibernateBuildManager.getProjectById(long id)
           
 Project BuildManager.getProjectByKey(java.lang.String key)
          Returns the prokect given a project key
 Project HibernateBuildManager.getProjectByKey(java.lang.String key)
           
 Project BuildManager.getProjectByName(java.lang.String projectName)
           
 Project HibernateBuildManager.getProjectByName(java.lang.String projectName)
           
 

Methods in com.atlassian.bamboo.build that return types with arguments of type Project
 java.util.Collection<Project> BuildManager.getAllProjects()
          Returns a collection of Project objects
 

Methods in com.atlassian.bamboo.build with parameters of type Project
 void BuildManager.deleteProject(Project project)
          Removes the project from the system
 void HibernateBuildManager.deleteProject(Project project)
           
 java.util.Collection BuildHibernateDao.getBuildsByProject(Project project)
           
 java.util.Collection BuildDao.getBuildsByProject(Project project)
           
 java.util.Collection BuildManager.getBuildsByProjectForRead(Project project)
          This is the manager equivalent of a project.getBuilds.
 java.util.Collection HibernateBuildManager.getBuildsByProjectForRead(Project project)
           
 void BuildObjectForTests.setProject(Project project)
           
 void BuildDefinitionForProject.setProject(Project project)
           
 void Build.setProject(Project project)
           
 void DefaultBuildDefinitionForProject.setProject(Project projectForDefault)
           
 void DefaultBuild.setProject(Project project)
           
 

Constructors in com.atlassian.bamboo.build with parameters of type Project
DefaultBuildDefinitionForProject(Project project)
           
 

Uses of Project in com.atlassian.bamboo.labels
 

Methods in com.atlassian.bamboo.labels that return Project
 Project Labelling.getProject()
           
 Project LabellingImpl.getProject()
           
 

Methods in com.atlassian.bamboo.labels with parameters of type Project
protected  int LabelManagerImpl.addLabel(java.lang.String labelName, java.lang.String namespace, Project project, Build build, BuildResults buildResults, java.lang.String userName)
           
 Labelling LabelHibernateDao.findLabellingByProject(Label label, Project project)
           
 Labelling LabelDao.findLabellingByProject(Label label, Project project)
           
 java.util.List LabelHibernateDao.findLabels(Project project)
           
 java.util.List<Labelling> LabelDao.findLabels(Project project)
           
 java.util.List<LabelCount> LabelManager.findLabels(java.lang.String namespace, int maxResults, Build build, Project project)
          Finds all labels in a given build, with namespace and maxResults.
 java.util.List<LabelCount> LabelManagerImpl.findLabels(java.lang.String namespace, int maxResults, Build build, Project project)
           
 java.util.List LabelHibernateDao.findLabels(java.lang.String namespace, int maxResults, Project project)
           
 java.util.List<LabelCount> LabelDao.findLabels(java.lang.String namespace, int maxResults, Project project)
           
protected  int LabelManagerImpl.removeLabel(java.lang.String labelName, java.lang.String namespace, Project project, Build build, BuildResults buildResults, java.lang.String userName)
           
 void Labelling.setProject(Project project)
           
 void LabellingImpl.setProject(Project project)
           
 

Uses of Project in com.atlassian.bamboo.plugins.rest.model.project
 

Constructors in com.atlassian.bamboo.plugins.rest.model.project with parameters of type Project
RestProject(Project project, com.atlassian.user.User user, javax.ws.rs.core.UriInfo uriInfo)
           
 

Uses of Project in com.atlassian.bamboo.project
 

Classes in com.atlassian.bamboo.project that implement Project
 class DefaultProject
           
 

Methods in com.atlassian.bamboo.project that return Project
 Project ProjectHibernateDao.getProjectByKey(java.lang.String key)
           
 Project ProjectDao.getProjectByKey(java.lang.String key)
           
 Project ProjectHibernateDao.getProjectByName(java.lang.String projectName)
           
 Project ProjectDao.getProjectByName(java.lang.String projectName)
           
 

Methods in com.atlassian.bamboo.project with parameters of type Project
 void ProjectHibernateDao.saveProject(Project project)
           
 void ProjectDao.saveProject(Project project)
           
 

Uses of Project in com.atlassian.bamboo.rest
 

Methods in com.atlassian.bamboo.rest that return Project
 Project GetRecentlyCompletedBuildResultsForProject.getProject()
           
 Project GetProjectDetails.getProject()
           
 Project GetLatestBuildResultsForProject.getProject()
           
 

Methods in com.atlassian.bamboo.rest with parameters of type Project
 void GetRecentlyCompletedBuildResultsForProject.setProject(Project project)
           
 void GetLatestBuildResultsForProject.setProject(Project project)
           
 

Uses of Project in com.atlassian.bamboo.ww2.actions.admin.bulk
 

Methods in com.atlassian.bamboo.ww2.actions.admin.bulk that return types with arguments of type Project
 java.util.Collection<Project> BulkPlanAction.getProjects()
           
 

Methods in com.atlassian.bamboo.ww2.actions.admin.bulk with parameters of type Project
 boolean BulkPlanAction.isApplicable(BulkAction bulkAction, Project project)
           
 

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

Methods in com.atlassian.bamboo.ww2.actions.build.admin that return Project
 Project MoveBuilds.getSelectedProject()
           
 

Uses of Project in com.atlassian.bamboo.ww2.actions.labels
 

Methods in com.atlassian.bamboo.ww2.actions.labels that return Project
 Project ViewLabels.getProject()
           
 

Methods in com.atlassian.bamboo.ww2.actions.labels with parameters of type Project
 void ViewLabels.setProject(Project project)
           
 

Uses of Project in com.atlassian.bamboo.ww2.actions.project
 

Methods in com.atlassian.bamboo.ww2.actions.project that return Project
 Project ViewProject.getProject()
           
 

Uses of Project in com.atlassian.bamboo.ww2.aware
 

Methods in com.atlassian.bamboo.ww2.aware that return Project
 Project ProjectAware.getProject()
           
 



Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.