@PublicApi public class

ChangeItemBean

extends Object
java.lang.Object
   ↳ com.atlassian.jira.issue.history.ChangeItemBean

@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

A very simple bean to hold change items.

Summary

Constants
String CUSTOM_FIELD
String STATIC_FIELD
Public Constructors
ChangeItemBean()
ChangeItemBean(String fieldType, String field, String from, String to)
ChangeItemBean(String fieldType, String field, String from, String fromString, String to, String toString)
ChangeItemBean(String fieldType, String field, String from, String fromString, String to, String toString, Timestamp created)
Public Methods
boolean equals(Object o)
Timestamp getCreated()
String getField()
String getFieldType()
String getFrom()
String getFromString()
String getTo()
String getToString()
int hashCode()
void setCreated(Timestamp created)
void setField(String field)
void setFieldType(String fieldType)
void setFrom(String from)
void setFromString(String fromString)
void setTo(String to)
void setToString(String toString)
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final String CUSTOM_FIELD

Constant Value: "custom"

public static final String STATIC_FIELD

Constant Value: "jira"

Public Constructors

public ChangeItemBean ()

public ChangeItemBean (String fieldType, String field, String from, String to)

public ChangeItemBean (String fieldType, String field, String from, String fromString, String to, String toString)

public ChangeItemBean (String fieldType, String field, String from, String fromString, String to, String toString, Timestamp created)

Public Methods

public boolean equals (Object o)

public Timestamp getCreated ()

public String getField ()

public String getFieldType ()

public String getFrom ()

public String getFromString ()

public String getTo ()

public String getToString ()

public int hashCode ()

public void setCreated (Timestamp created)

public void setField (String field)

public void setFieldType (String fieldType)

public void setFrom (String from)

public void setFromString (String fromString)

public void setTo (String to)

public void setToString (String toString)

public String toString ()