com.atlassian.jira.rest.client.api.domain
Class TimeTracking

java.lang.Object
  extended by com.atlassian.jira.rest.client.api.domain.TimeTracking

public class TimeTracking
extends java.lang.Object

Represents time tracking information associated with given issue

Since:
com.atlassian.jira.rest.client.api 0.3, server 4.4

Constructor Summary
TimeTracking(java.lang.Integer originalEstimateMinutes, java.lang.Integer remainingEstimateMinutes, java.lang.Integer timeSpentMinutes)
           
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.Integer getOriginalEstimateMinutes()
           
 java.lang.Integer getRemainingEstimateMinutes()
           
 java.lang.Integer getTimeSpentMinutes()
           
 int hashCode()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TimeTracking

public TimeTracking(@Nullable
                    java.lang.Integer originalEstimateMinutes,
                    @Nullable
                    java.lang.Integer remainingEstimateMinutes,
                    @Nullable
                    java.lang.Integer timeSpentMinutes)
Method Detail

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 © 2013 Atlassian. All Rights Reserved.