com.atlassian.jira.issue.customfields.statistics
Class AbstractCustomFieldStatisticsMapper

java.lang.Object
  extended by com.atlassian.jira.issue.customfields.statistics.AbstractCustomFieldStatisticsMapper
All Implemented Interfaces:
LuceneFieldSorter, StatisticsMapper
Direct Known Subclasses:
ProjectSelectStatisticsMapper, UserPickerStatisticsMapper

public abstract class AbstractCustomFieldStatisticsMapper
extends java.lang.Object
implements StatisticsMapper


Field Summary
protected  CustomField customField
           
 
Constructor Summary
AbstractCustomFieldStatisticsMapper(CustomField customField)
           
 
Method Summary
 boolean equals(java.lang.Object o)
          As this object is used as a key in a cache, this method must be provided and respect all internal state.
 java.util.Comparator getComparator()
          A comparator that can be used to order objects returned by LuceneFieldSorter.getValueFromLuceneField(String).
 java.lang.String getDocumentConstant()
          Get the constant that this field is indexed with.
protected  SearchContext getSearchContextFromValue(java.lang.Object value)
           
 SearchRequest getSearchUrlSuffix(java.lang.Object value, SearchRequest searchRequest)
          Get a suffix for the issue navigator, which allows for filtering on this value.
protected abstract  java.lang.String getSearchValue(java.lang.Object value)
          String value to be passed to the search request to construct a new request URL
 int hashCode()
          As this object is used as a key in a cache, this method must be provided and respect all internal state.
 boolean isFieldAlwaysPartOfAnIssue()
          Check if the field is always part of an issues data.
 boolean isValidValue(java.lang.Object value)
          Check whether this value is valid for this particular search.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.atlassian.jira.issue.search.LuceneFieldSorter
getValueFromLuceneField
 

Field Detail

customField

protected final CustomField customField
Constructor Detail

AbstractCustomFieldStatisticsMapper

public AbstractCustomFieldStatisticsMapper(CustomField customField)
Method Detail

getDocumentConstant

public java.lang.String getDocumentConstant()
Description copied from interface: LuceneFieldSorter
Get the constant that this field is indexed with.

Specified by:
getDocumentConstant in interface LuceneFieldSorter
See Also:
IssueDocument, CustomFieldSearcher

isValidValue

public boolean isValidValue(java.lang.Object value)
Description copied from interface: StatisticsMapper
Check whether this value is valid for this particular search. This is useful if you do not wish to display all the values that are indexed (eg - only show released versions)

Specified by:
isValidValue in interface StatisticsMapper
Parameters:
value - This is the same value that will be returned from LuceneFieldSorter.getValueFromLuceneField(String)
Returns:
true if this value is valid for this particular search

getSearchUrlSuffix

public SearchRequest getSearchUrlSuffix(java.lang.Object value,
                                        SearchRequest searchRequest)
Description copied from interface: StatisticsMapper
Get a suffix for the issue navigator, which allows for filtering on this value.

eg. a project field would return a SearchRequest object who's getQueryString method will produce pid=10240

Note that values returned from implementations should return values that are URLEncoded.

Specified by:
getSearchUrlSuffix in interface StatisticsMapper
Parameters:
value - This is the same value that will be returned from LuceneFieldSorter.getValueFromLuceneField(String)
searchRequest - is the search request that should be used as the base of the newly generated SearchRequest object. If this parameter is null then the return type will also be null.
Returns:
a SearchRequest object that will generate the correct issue navigator url to search the correct statistics set, null otherwise.
See Also:
URLEncoder.encode(String)

getSearchContextFromValue

protected SearchContext getSearchContextFromValue(java.lang.Object value)

getSearchValue

protected abstract java.lang.String getSearchValue(java.lang.Object value)
String value to be passed to the search request to construct a new request URL

Parameters:
value - returned from LuceneFieldSorter.getValueFromLuceneField(java.lang.String)
Returns:
String

getComparator

public java.util.Comparator getComparator()
Description copied from interface: LuceneFieldSorter
A comparator that can be used to order objects returned by LuceneFieldSorter.getValueFromLuceneField(String).

The Comparator must be reentrant as it could be used by Lucene from multiple threads at once.

Specified by:
getComparator in interface LuceneFieldSorter

isFieldAlwaysPartOfAnIssue

public boolean isFieldAlwaysPartOfAnIssue()
Description copied from interface: StatisticsMapper
Check if the field is always part of an issues data. This should only return false in the case of a custom field where the value does not have to be set for each issue.

Specified by:
isFieldAlwaysPartOfAnIssue in interface StatisticsMapper
Returns:
true if this mapper will always be part of an issues data

equals

public boolean equals(java.lang.Object o)
Description copied from interface: LuceneFieldSorter
As this object is used as a key in a cache, this method must be provided and respect all internal state.

See the class javadoc entry for more details.

Specified by:
equals in interface LuceneFieldSorter
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Description copied from interface: LuceneFieldSorter
As this object is used as a key in a cache, this method must be provided and respect all internal state.

See the class javadoc entry for more details.

Specified by:
hashCode in interface LuceneFieldSorter
Overrides:
hashCode in class java.lang.Object


Copyright © 2002-2011 Atlassian. All Rights Reserved.