com.atlassian.jira.rest.client.domain
Class TimeTracking
java.lang.Object
com.atlassian.jira.rest.client.domain.TimeTracking
public class TimeTracking
- extends java.lang.Object
Represents time tracking information associated with given issue
- Since:
- client 0.3, server 4.4
|
Constructor Summary |
TimeTracking(java.lang.Integer originalEstimateMinutes,
java.lang.Integer remainingEstimateMinutes,
java.lang.Integer timeSpentMinutes)
|
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
TimeTracking
public TimeTracking(@Nullable
java.lang.Integer originalEstimateMinutes,
@Nullable
java.lang.Integer remainingEstimateMinutes,
@Nullable
java.lang.Integer timeSpentMinutes)
getOriginalEstimateMinutes
@Nullable
public java.lang.Integer getOriginalEstimateMinutes()
- Returns:
- original estimation [in minutes] for this issue or
null when time spent information is not available
getRemainingEstimateMinutes
@Nullable
public java.lang.Integer getRemainingEstimateMinutes()
- Returns:
- original remaining estimated time [in minutes] for this issue or
null when such estimation was not provided
getTimeSpentMinutes
@Nullable
public java.lang.Integer getTimeSpentMinutes()
- Returns:
- time spent [in minutes] on this issue or
null when time spent information is not available to the caller
(in some strange circumstances)
toString
public java.lang.String toString()
- Overrides:
toString in class java.lang.Object
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals in class java.lang.Object
hashCode
public int hashCode()
- Overrides:
hashCode in class java.lang.Object
Copyright © 2012 Atlassian Pty Ltd. All Rights Reserved.