Package org.gitlab4j.api.models
Class Epic
- java.lang.Object
-
- org.gitlab4j.api.models.Epic
-
public class Epic extends Object
-
-
Constructor Summary
Constructors Constructor Description Epic()
-
Method Summary
Modifier and Type Method Description Author
getAuthor()
Date
getCreatedAt()
String
getDescription()
Date
getEndDate()
Integer
getGroupId()
Integer
getId()
Integer
getIid()
List<String>
getLabels()
Date
getStartDate()
String
getTitle()
Date
getUpdatedAt()
void
setAuthor(Author author)
void
setCreatedAt(Date createdAt)
void
setDescription(String description)
void
setEndDate(Date endDate)
void
setGroupId(Integer groupId)
void
setId(Integer id)
void
setIid(Integer iid)
void
setLabels(List<String> labels)
void
setStartDate(Date startDate)
void
setTitle(String title)
void
setUpdatedAt(Date updatedAt)
String
toString()
Epic
withAuthor(Author author)
Epic
withDescription(String description)
Epic
withEndDate(Date endDate)
Epic
withLabels(List<String> labels)
Epic
withStartDate(Date startDate)
Epic
withTitle(String title)
-
-
-
Method Detail
-
getId
public Integer getId()
-
setId
public void setId(Integer id)
-
getIid
public Integer getIid()
-
setIid
public void setIid(Integer iid)
-
getGroupId
public Integer getGroupId()
-
setGroupId
public void setGroupId(Integer groupId)
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String title)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getAuthor
public Author getAuthor()
-
setAuthor
public void setAuthor(Author author)
-
getStartDate
public Date getStartDate()
-
setStartDate
public void setStartDate(Date startDate)
-
getEndDate
public Date getEndDate()
-
setEndDate
public void setEndDate(Date endDate)
-
getCreatedAt
public Date getCreatedAt()
-
setCreatedAt
public void setCreatedAt(Date createdAt)
-
getUpdatedAt
public Date getUpdatedAt()
-
setUpdatedAt
public void setUpdatedAt(Date updatedAt)
-
-