View Javadoc

1   package com.atlassian.jira.bc;
2   
3   import com.opensymphony.user.User;
4   
5   /**
6    * FQCN : com.atlassian.jira.bc.ExtendedJiraServiceContext
7    * @author Kaamelot
8    * @since 3.x.1.28
9    * Description : Provides a delegated JIRA Context
10   */
11  public interface ExtendedJiraServiceContext extends JiraServiceContext {
12  
13  	/** @return User qualified "AS"
14  	 */	
15  	User getAsUser();
16  	
17  	/** @return a delegated JIRA Context with "As User"
18  	 */
19  	JiraServiceContext getDelegateJiraServiceContext();
20  
21  }