View Javadoc

1   package com.atlassian.jira.project;
2   
3   /**
4    * @FQCN com.atlassian.jira.project.IManageableAsProjectConst
5    * @description  
6    * @author kaamelot
7    * @since 3.13.1.34 
8    */
9   public interface IManageableAsProjectConst {
10  
11  	// -- Relation Project to Project ---
12  	static final String RELATION_MANAGEABLE_TO_MANAGEABLE = "ManageableToManageable";
13  
14  	// -- Relation Manageable to Project (If Managed) ---
15  	static final String RELATION_MANAGEABLE_TO_PROJECT = "ManageableToProject";
16  
17  	// // -- Relation Project to Project ---
18  	static final String RELATION_PROJECT_TO_PROJECT = "ProjectToProject";
19  
20  	// -- Issue Type Code ---
21  	static final String ISSUE_TYPE_DEFAULT = "Default";
22  
23  }