com.atlassian.greenhopper.service.issue.callback
Class IssueIdCallback
java.lang.Object
com.atlassian.greenhopper.service.issue.callback.AbstractIssueDataCallback
com.atlassian.greenhopper.service.issue.callback.IssueIdCallback
- All Implemented Interfaces:
- IssueDataCallback
- Direct Known Subclasses:
- VisitingIssueIdCallback
public class IssueIdCallback
- extends AbstractIssueDataCallback
Lightweight IssueDataCallback that only stores issue ids.
Useful for when trying to take a find issue subsets based on extra clauses.
|
Method Summary |
void |
fieldData(java.lang.Long issueId,
java.lang.String issueKey,
java.lang.String fieldName,
java.lang.String data)
This callback is being called for every issue that matches the query. |
java.util.Set<java.lang.String> |
getFields()
see DocumentConstants for possible values. |
java.util.Set<java.lang.Long> |
getIssueIds()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
IssueIdCallback
public IssueIdCallback()
getFields
public java.util.Set<java.lang.String> getFields()
- Description copied from interface:
IssueDataCallback
- see DocumentConstants for possible values. These are the issue fields that we want to read from the Lucene index.
fieldData
public void fieldData(java.lang.Long issueId,
java.lang.String issueKey,
java.lang.String fieldName,
java.lang.String data)
- Description copied from interface:
IssueDataCallback
- This callback is being called for every issue that matches the query. For memory efficiency, try to avoid buffering all results in memory but
rather stream them to the target object, like a REST template.
fieldName - : The name of the field that this value belongs to. One of the fields specified in getFields(). See DocumentConstants for
possible values.data - : The raw Lucene data for the given field. Can be null.
getIssueIds
public java.util.Set<java.lang.Long> getIssueIds()
Copyright © 2007-2012 Atlassian. All Rights Reserved.