Package com.atlassian.bamboo.labels
Interface Labelling
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
,CreationDateProvider
,VersionedEntityComponent<Plan>
- All Known Implementing Classes:
LabellingImpl
public interface Labelling extends BambooObject, CreationDateProvider, VersionedEntityComponent<Plan>
-
-
Field Summary
-
Fields inherited from interface com.atlassian.bamboo.utils.CreationDateProvider
ORDERING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable ResultsSummary
getBuildResultsSummary()
Date
getCreationDate()
Label
getLabel()
Date
getLastModificationDate()
@Nullable Plan
getPlan()
Project
getProject()
@Nullable String
getUserName()
void
setBuildResultsSummary(ResultsSummary resultsSummary)
void
setCreationDate(Date creationDate)
void
setLabel(Label label)
void
setLastModificationDate(Date lastModificationDate)
void
setPlan(Plan plan)
void
setProject(Project project)
void
setUserName(String userName)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
Methods inherited from interface com.atlassian.bamboo.versioning.VersionedEntityComponent
getRoot
-
-
-
-
Method Detail
-
getLabel
Label getLabel()
-
setLabel
void setLabel(Label label)
-
getBuildResultsSummary
@Nullable @Nullable ResultsSummary getBuildResultsSummary()
-
setBuildResultsSummary
void setBuildResultsSummary(ResultsSummary resultsSummary)
-
getCreationDate
Date getCreationDate()
- Specified by:
getCreationDate
in interfaceCreationDateProvider
- Returns:
- Date the version object was created.
-
setCreationDate
void setCreationDate(Date creationDate)
-
getLastModificationDate
Date getLastModificationDate()
-
setLastModificationDate
void setLastModificationDate(Date lastModificationDate)
-
getProject
Project getProject()
-
setProject
void setProject(Project project)
-
getPlan
@Nullable @Nullable Plan getPlan()
-
setPlan
void setPlan(Plan plan)
-
getUserName
@Nullable @Nullable String getUserName()
-
setUserName
void setUserName(String userName)
-
-