|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Project
Represents a Bamboo project object. Projects are top level entities and can have multiple Build
s. A project
can also have a default BuildDefinition
that Build
s extend.
Important: getPlans()
, getTopLevelPlans()
} are lazy loaded for performance reasons.
If you need to guarantee that these collections are available use PlanManager.getPlansByProject(Project, Class)
Method Summary | |
---|---|
java.lang.String |
getCurrentStatus()
Returns the string representation the current status of a build. |
java.lang.String |
getKey()
Returns key of the project. |
java.util.List<Labelling> |
getLabellings()
|
java.lang.String |
getName()
|
java.util.List<Plan> |
getPlans()
Returns all Plan associated with the Project . |
java.util.List<Labelling> |
getRelatedLabellings()
|
java.util.List<TopLevelPlan> |
getTopLevelPlans()
This methods returns all TopLevelPlans, including the ones marked for deletion This collection is a lazy relationship for performance reasons. |
void |
setKey(java.lang.String key)
Sets the key for the project. |
void |
setLabellings(java.util.List<Labelling> labellings)
|
void |
setName(java.lang.String name)
|
Methods inherited from interface com.atlassian.bamboo.Describable |
---|
setDescription |
Methods inherited from interface com.atlassian.bamboo.utils.DescriptionProvider |
---|
getDescription |
Methods inherited from interface com.atlassian.bamboo.deletion.Deletable |
---|
isMarkedForDeletion, setMarkedForDeletion |
Methods inherited from interface com.atlassian.bamboo.core.BambooObject |
---|
getId, setId |
Method Detail |
---|
@NotNull java.lang.String getKey()
@NotNull java.lang.String getName()
getName
in interface DescriptionProvider
getName
in interface NameProvider
void setName(@NotNull java.lang.String name)
setName
in interface Describable
void setKey(@NotNull java.lang.String key)
key
- @NotNull java.util.List<Plan> getPlans()
Plan
associated with the Project
. Returns Collections.emptyList()
if
there are no Plan
s for the project.
This collection is a lazy relationship for performance reasons.
If you need to guarantee that these collections are available use PlanManager.getPlansByProject(Project, Class)
List
of Plan
s. Collections.emptyList()
if no plans.java.util.List<TopLevelPlan> getTopLevelPlans()
PlanManager.getPlansByProject(Project, Class)
Use this method only if all you need is present in TopLevelPlan interface, otherwise consider using getAllChains.
java.lang.String getCurrentStatus()
Build@getCurrentStatus
.
It will return "current" if any plan is building, and "fail" if any plan is failing.
java.util.List<Labelling> getLabellings()
void setLabellings(java.util.List<Labelling> labellings)
java.util.List<Labelling> getRelatedLabellings()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |