Package io.ultreia.maven.gitlab.model
Class IssueModel
- java.lang.Object
-
- io.ultreia.maven.gitlab.model.IssueModel
-
public class IssueModel extends Object
Created by tchemit on 20/02/17.- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Constructor Summary
Constructors Constructor Description IssueModel(org.gitlab.api.models.GitlabIssue issue, GitlabIssueTime time, String tracker, List<String> trackers)IssueModel(org.gitlab.api.models.GitlabIssue issue, String tracker, List<String> trackers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.gitlab.api.models.GitlabUsergetAssignee()org.gitlab.api.models.GitlabUsergetAuthor()StringgetHumanTimeEstimate()StringgetHumanTotalTimeSpend()intgetId()StringgetIssueType()intgetTimeEstimate()StringgetTitle()intgetTotalTimeSpent()StringgetTracker()
-
-
-
Method Detail
-
getTracker
public String getTracker()
-
getIssueType
public String getIssueType()
-
getId
public int getId()
-
getTitle
public String getTitle()
-
getAssignee
public org.gitlab.api.models.GitlabUser getAssignee()
-
getAuthor
public org.gitlab.api.models.GitlabUser getAuthor()
-
getTimeEstimate
public int getTimeEstimate()
-
getTotalTimeSpent
public int getTotalTimeSpent()
-
getHumanTimeEstimate
public String getHumanTimeEstimate()
-
getHumanTotalTimeSpend
public String getHumanTotalTimeSpend()
-
-