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

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

public class TimeTracking
extends Object

Represents time tracking information associated with given issue

Since:
client 0.3, server 4.4

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

Constructor Detail

TimeTracking

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

getOriginalEstimateMinutes

@Nullable
public Integer getOriginalEstimateMinutes()
Returns:
original estimation [in minutes] for this issue or null when time spent information is not available

getRemainingEstimateMinutes

@Nullable
public Integer getRemainingEstimateMinutes()
Returns:
original remaining estimated time [in minutes] for this issue or null when such estimation was not provided

getTimeSpentMinutes

@Nullable
public 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 String toString()
Overrides:
toString in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object


Copyright © 2011 Atlassian Pty Ltd. All Rights Reserved.