@PublicApi public class

ChangeHistoryGroup

extends Object
implements Comparable<T>
java.lang.Object
   ↳ com.atlassian.jira.issue.changehistory.ChangeHistoryGroup

@PublicApi

This class is designed for plugins to consume (call its methods).

Clients of @PublicApi can expect that programs compiled against a given version will remain binary compatible with later versions of the @PublicApi as per each product's API policy as long as the client does not implement/extend @PublicApi interfaces or classes (refer to each product's API policy for the exact guarantee---usually binary compatibility is guaranteed at least across minor versions).

Note: since @PublicApi interfaces and classes are not designed to be implemented or extended by clients, we may perform certain types of binary-incompatible changes to these classes and interfaces, but these will not affect well-behaved clients that do not extend/implement these types (in general, only classes and interfaces annotated with @PublicSpi are safe to extend/implement).

Class Overview

This groups ChangeHistoryGroup together to try and reduce org.apache.lucene.document.Document proliferation.

Summary

Nested Classes
class ChangeHistoryGroup.Builder  
Public Constructors
ChangeHistoryGroup(Long id, Long projectId, Long issueId, String issueKey, String userKey, List<ChangeHistoryItem> changeItems, Timestamp created)
Public Methods
int compareTo(ChangeHistoryGroup other)
boolean equals(Object o)
List<ChangeHistoryItem> getChangeItems()
Timestamp getCreated()
Long getId()
Long getIssueId()
String getIssueKey()
Long getProjectId()
String getUser()
This method is deprecated. Use getUserKey() instead (for clarity). Since v6.0.
String getUserKey()
int hashCode()
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Comparable

Public Constructors

public ChangeHistoryGroup (Long id, Long projectId, Long issueId, String issueKey, String userKey, List<ChangeHistoryItem> changeItems, Timestamp created)

Public Methods

public int compareTo (ChangeHistoryGroup other)

public boolean equals (Object o)

public List<ChangeHistoryItem> getChangeItems ()

public Timestamp getCreated ()

public Long getId ()

public Long getIssueId ()

public String getIssueKey ()

public Long getProjectId ()

public String getUser ()

This method is deprecated.
Use getUserKey() instead (for clarity). Since v6.0.

Note: This is the user's key, which since 6.0 is not necessarily the same as the username.

public String getUserKey ()

public int hashCode ()