Package com.atlassian.bamboo.labels
Interface Label
-
- All Superinterfaces:
BambooIdProvider
,BambooObject
,Comparable<Label>
,CreationDateProvider
- All Known Implementing Classes:
LabelImpl
public interface Label extends BambooObject, CreationDateProvider, Comparable<Label>
-
-
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 Date
getCreationDate()
Date
getLastModificationDate()
String
getName()
String
getNamespace()
void
setCreationDate(Date creationDate)
void
setLastModificationDate(Date lastModificationDate)
void
setName(String name)
void
setNamespace(String namespace)
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
Methods inherited from interface com.atlassian.bamboo.core.BambooObject
setId
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
getName
String getName()
-
setName
void setName(String name)
-
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)
-
getNamespace
String getNamespace()
-
setNamespace
void setNamespace(String namespace)
-
-