1 package com.atlassian.jira.service;
2
3 import java.util.List;
4
5 import com.atlassian.jira.issue.MutableIssue;
6
7
8
9
10
11
12
13 public interface IResquestAwareService {
14
15 public final static String REQUEST_KEY = "REQUEST";
16
17 public final static String SEARCHER_KEY = "SEARCHER";
18
19
20
21
22 public void validate() throws ServiceException;
23
24
25
26
27
28 public void runService() throws ServiceException;
29
30
31
32
33
34 public void runServiceOnIssues(final List _issues) throws ServiceException;
35
36
37
38
39
40 public void runServiceOnIssue(final MutableIssue _issue) throws ServiceException;
41
42 }