Uses of Interface
com.atlassian.greenhopper.service.issue.callback.IssueDataCallback

Packages that use IssueDataCallback
com.atlassian.greenhopper.service.issue   
com.atlassian.greenhopper.service.issue.callback   
com.atlassian.greenhopper.service.migration   
com.atlassian.greenhopper.service.rapid.view.color   
com.atlassian.greenhopper.service.sprint   
com.atlassian.greenhopper.web.rapid.chart   
com.atlassian.greenhopper.web.rapid.issue.statistics   
com.atlassian.greenhopper.web.rapid.list   
com.atlassian.greenhopper.web.rapid.plan   
com.atlassian.greenhopper.web.rapid.sprint   
com.atlassian.greenhopper.web.rapid.work   
 

Uses of IssueDataCallback in com.atlassian.greenhopper.service.issue
 

Classes in com.atlassian.greenhopper.service.issue that implement IssueDataCallback
 class EpicHistoryDataCollector
          Collects Epic history data for passed issues
 

Methods in com.atlassian.greenhopper.service.issue with type parameters of type IssueDataCallback
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataServiceImpl.find(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataService.find(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
          Execute the query, and for each issue in the result, extract the data as specified by the fields in the callback and send them over to the callback collector.
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataServiceImpl.find(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback, org.apache.lucene.search.Query andQuery)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataService.find(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback, org.apache.lucene.search.Query andQuery)
          Allows specifying an "and" lucene query in addition to a callback
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataServiceImpl.findAndSort(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataService.findAndSort(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
          Performs a search taking sorting into account
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataServiceImpl.findAndSortWithServiceOutcome(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback, com.atlassian.jira.web.bean.PagerFilter<?> pager)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataService.findAndSortWithServiceOutcome(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback, com.atlassian.jira.web.bean.PagerFilter<?> pager)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataServiceImpl.findOverrideSecurity(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataService.findOverrideSecurity(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
          Executes a find, but overwrites security.
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataServiceImpl.findWithServiceOutcome(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
           
<T extends IssueDataCallback>
ServiceOutcome<java.lang.Void>
IssueDataService.findWithServiceOutcome(com.atlassian.crowd.embedded.api.User user, com.atlassian.query.Query query, T callback)
           
 

Constructors in com.atlassian.greenhopper.service.issue with parameters of type IssueDataCallback
IssueDataCollector(org.apache.lucene.search.IndexSearcher searcher, org.apache.lucene.document.FieldSelector fieldSelector, IssueDataCallback callback)
           
 

Uses of IssueDataCallback in com.atlassian.greenhopper.service.issue.callback
 

Subinterfaces of IssueDataCallback in com.atlassian.greenhopper.service.issue.callback
 interface IssueCompoundDataCallback
          A specialisation of IssueDataCallback which wants all fields and their values in one go to do more complex processing.
 

Classes in com.atlassian.greenhopper.service.issue.callback that implement IssueDataCallback
 class AbstractColumnStatisticsCallback
          Common parent class for callbacks which accumulate column constraint statistics.
 class AbstractCompoundDataCallback
          Abstract implementation that
 class AbstractIssueDataCallback
          Abstract implementation of a callback
 class ComposedIssueDataCallback
          One IssueDataCallback that encapsulates multiples.
 class IssueAndParentKeyCallback
          Collect issue keys found and map them to their parent issue's key
 class IssueCountAndLastUpdatedCallback
          Collects the number of issues as well as the last updated date across all issues.
 class IssueCountExcludingSubTasksStatisticsCallback
          Checks the issue type of each document against the list of parent issue types to ensure that only parent issues are counted towards column statistics.
 class IssueCountStatisticsCallback
          Very simple statistics callback - every document is worth 1.
 class IssueIdCallback
          Lightweight IssueDataCallback that only stores issue ids.
 class IssueKeyCallback
           
 class JiraFieldStatisticsCallback
          If and when fields are supported as a column constraint, this will be used to calculate the value of each document by looking up the field's indexed value.
 class ProjectIssueDataCallback
          Collects all project ids of given issues
 class ProjectsCallback
          Collects all project ids of given issues
 class SprintAndIssueIdsCallback
          Collects Sprint IDs.
 class SprintAndProjectsCallback
          Collects sprints and associated project ids
 class SprintIdCallback
          Collects sprint ids
 class StatusCountCallback
          Creates a histogram of statuses and their issue count.
 class StatusProgressCallback
          Initialised with the mapping of ColumnProgress to their sets of Status objects, this callback inspects the status of each issue and assigns it to the appropriate ColumnProgress in a map.
 class VisitingIssueIdCallback
          An extension of IssueIdCallback which also keeps track of issues which have already been collected.
 

Methods in com.atlassian.greenhopper.service.issue.callback with type parameters of type IssueDataCallback
static
<T extends IssueDataCallback>
ComposedIssueDataCallback
ComposedIssueDataCallback.of(T... composites)
           
 

Methods in com.atlassian.greenhopper.service.issue.callback with parameters of type IssueDataCallback
static
<T extends IssueDataCallback>
ComposedIssueDataCallback
ComposedIssueDataCallback.of(T... composites)
           
 

Uses of IssueDataCallback in com.atlassian.greenhopper.service.migration
 

Classes in com.atlassian.greenhopper.service.migration that implement IssueDataCallback
 class IssueKeyWithClassicEpicLinkDataCallback
          Retrieves issue key and the content of the given issueField
 

Uses of IssueDataCallback in com.atlassian.greenhopper.service.rapid.view.color
 

Classes in com.atlassian.greenhopper.service.rapid.view.color that implement IssueDataCallback
 class AbstractCardColorCallback
          Abstract CallbackComponent implementation
 class AssigneeCardColorCallback
          Callback for assignee card color strategy
 class IssueTypeCardColorCallback
          Callback for issue type card color strategy
 class PriorityCardColorCallback
          Callback for priority card color strategy
 

Uses of IssueDataCallback in com.atlassian.greenhopper.service.sprint
 

Classes in com.atlassian.greenhopper.service.sprint that implement IssueDataCallback
 class SprintHistoryDataCollector
          Collects sprint history data for passed issues
 

Uses of IssueDataCallback in com.atlassian.greenhopper.web.rapid.chart
 

Classes in com.atlassian.greenhopper.web.rapid.chart that implement IssueDataCallback
 class StatisticHistoryDataCallback
          This callback gathers various information about the issues it finds.
 

Uses of IssueDataCallback in com.atlassian.greenhopper.web.rapid.issue.statistics
 

Classes in com.atlassian.greenhopper.web.rapid.issue.statistics that implement IssueDataCallback
 class StatisticFieldAggregationCallback
          Callback which will retrieve the value of the StatisticsFieldConfig on each Issue that is collected and accumulate the values for each parent issue including its subtasks
 

Uses of IssueDataCallback in com.atlassian.greenhopper.web.rapid.list
 

Classes in com.atlassian.greenhopper.web.rapid.list that implement IssueDataCallback
 class RapidIssueEntryCallback
          Specialised data collector for pool issue data.
 

Methods in com.atlassian.greenhopper.web.rapid.list with parameters of type IssueDataCallback
 ServiceOutcome<CollectIssuesResult> RapidIssueEntryQueryServiceImpl.collectOpenSprintIssues(com.atlassian.crowd.embedded.api.User user, RapidView rapidView, java.util.Set<java.lang.Long> activeQuickFilters, IssueDataCallback additionalCallback)
          Get all issues of the open sprints (for the plan mode)
 ServiceOutcome<CollectIssuesResult> RapidIssueEntryQueryService.collectOpenSprintIssues(com.atlassian.crowd.embedded.api.User user, RapidView rapidView, java.util.Set<java.lang.Long> activeQuickFilters, IssueDataCallback additionalCallback)
          Query for open sprints
 

Uses of IssueDataCallback in com.atlassian.greenhopper.web.rapid.plan
 

Classes in com.atlassian.greenhopper.web.rapid.plan that implement IssueDataCallback
 class EpicStatisticCallback
          This callback gathers various information about the issues it finds.
 

Uses of IssueDataCallback in com.atlassian.greenhopper.web.rapid.sprint
 

Classes in com.atlassian.greenhopper.web.rapid.sprint that implement IssueDataCallback
static class CreateSprintHelper.IssueKeysAndStatisticsCallback
          Gathers all issue keys as well as statistics field values up to (including) a lastIssue.
 

Uses of IssueDataCallback in com.atlassian.greenhopper.web.rapid.work
 

Classes in com.atlassian.greenhopper.web.rapid.work that implement IssueDataCallback
 class ParentSwimlanesDataCallback
          Gathers information about parent swimlanes.
 



Copyright © 2007-2013 Atlassian. All Rights Reserved.