View Javadoc

1   package com.atlassian.jira.workflow.transition;
2   
3   import java.util.List;
4   
5   import org.ofbiz.core.entity.GenericValue;
6   
7   import com.atlassian.jira.issue.Issue;
8   
9   /**
10   * @FQCN com.atlassian.jira.workflow.transition.TransitionManager
11   * @description
12   * @author Kaamelot
13   * @since 3.10.1.3x
14   *
15   */
16  public interface TransitionManager {
17  
18  	public List getTransitions(final Issue _issue);
19  	
20  	public List getTransitions(final GenericValue _issue);
21  	
22  	public List getTransitions(final Long _entryId);
23  	
24  	public List getTransitionSummary(final Issue issue);
25  	
26  }