com.atlassian.greenhopper.service.migration.classicepic
Class IssueKeyWithClassicEpicLinkDataCallback

java.lang.Object
  extended by com.atlassian.greenhopper.service.issue.callback.AbstractIssueDataCallback
      extended by com.atlassian.greenhopper.service.migration.classicepic.IssueKeyWithClassicEpicLinkDataCallback
All Implemented Interfaces:
IssueDataCallback

public class IssueKeyWithClassicEpicLinkDataCallback
extends AbstractIssueDataCallback
implements IssueDataCallback

Retrieves issue key and the content of the given issueField


Field Summary
 
Fields inherited from class com.atlassian.greenhopper.service.issue.callback.AbstractIssueDataCallback
fields
 
Constructor Summary
IssueKeyWithClassicEpicLinkDataCallback(com.atlassian.jira.issue.fields.CustomField classicEpicLinkField)
           
 
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.Map<java.lang.String,java.util.Set<java.lang.String>> getIssuesWithEpicLink()
           
 void issueComplete(java.lang.Long issueId, java.lang.String issueKey)
          Called when all fieldData was returned for a single issue.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IssueKeyWithClassicEpicLinkDataCallback

public IssueKeyWithClassicEpicLinkDataCallback(com.atlassian.jira.issue.fields.CustomField classicEpicLinkField)
Method Detail

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.

Specified by:
getFields in interface IssueDataCallback
Overrides:
getFields in class AbstractIssueDataCallback

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.

Specified by:
fieldData in interface IssueDataCallback
Overrides:
fieldData in class AbstractIssueDataCallback
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.

issueComplete

public void issueComplete(java.lang.Long issueId,
                          java.lang.String issueKey)
Description copied from interface: IssueDataCallback
Called when all fieldData was returned for a single issue.

Specified by:
issueComplete in interface IssueDataCallback
Overrides:
issueComplete in class AbstractIssueDataCallback

getIssuesWithEpicLink

public java.util.Map<java.lang.String,java.util.Set<java.lang.String>> getIssuesWithEpicLink()


Copyright © 2007-2014 Atlassian. All Rights Reserved.