Package org.jboss.set.aphrodite.domain
Class Issue
- java.lang.Object
-
- org.jboss.set.aphrodite.domain.Issue
-
public class Issue extends Object
Represents an issue in a issue tracker (bugzilla, jira...)- Author:
- egonzalez
-
-
Constructor Summary
Constructors Constructor Description Issue(URL url, TrackerType type)
-
Method Summary
-
-
-
Constructor Detail
-
Issue
public Issue(URL url, TrackerType type)
-
-
Method Detail
-
getURL
public URL getURL()
-
setTrackerId
public void setTrackerId(String trackerId)
-
getTrackerType
public TrackerType getTrackerType()
-
setProduct
public void setProduct(String product)
-
setSummary
public void setSummary(String summary)
-
setDescription
public void setDescription(String description)
-
setAssignee
public void setAssignee(User assignee)
-
setReporter
public void setReporter(User reporter)
-
getStage
public Stage getStage()
-
setStage
public void setStage(Stage stage)
-
getStatus
public IssueStatus getStatus()
-
setStatus
@Deprecated public void setStatus(IssueStatus status)
Deprecated.
-
setStatus
public void setStatus(IssueStatus issueStatus, String rawStatus)
-
getRawStatus
public String getRawStatus()
-
getPriority
public IssuePriority getPriority()
-
setPriority
public void setPriority(IssuePriority priority)
-
getType
public IssueType getType()
-
setType
@Deprecated public void setType(IssueType type)
Deprecated.
-
getRawType
public String getRawType()
-
getStreamStatus
public Map<String,FlagStatus> getStreamStatus()
-
setStreamStatus
public void setStreamStatus(Map<String,FlagStatus> streamStatus)
-
setCreationTime
public void setCreationTime(Date creationTime)
-
setLastUpdated
public void setLastUpdated(Date lastUpdated)
-
getEstimation
public Optional<IssueEstimation> getEstimation()
-
setEstimation
public void setEstimation(IssueEstimation estimation)
-
getPatches
public Stream<Patch> getPatches() throws NameNotFoundException
- Throws:
NameNotFoundException
-
getUpstreamReferences
public Stream<Issue> getUpstreamReferences() throws NameNotFoundException
- Throws:
NameNotFoundException
-
-