View Javadoc

1   package com.atlassian.jira.config;
2   
3   public interface KaamelotKeys {
4   
5   	final static String JIRA_LF_REPORT_START_BGCOLOUR = "jira.lf.report.start.bgcolour";
6   	
7   	final static String JIRA_LF_REPORT_END_BGCOLOUR = "jira.lf.report.end.bgcolour";
8   	
9   	final static String JIRA_LF_MENU_BGCOLOUR = "jira.lf.menu.bgcolour";
10  
11  	final static String JIRA_LF_MENU_TEXTCOLOUR = "jira.lf.menu.textcolour";
12  	
13  	final static String JIRA_PLUGIN_UPGRADE_VERSION = "jira.plugin.version.kaamelot.addon";	
14  
15  	/** Delay in Days after the End of Month where a Worklog is not alterable */
16  	final static String WORKLOG_UPDATE_DELAY_DAYS = "Worklog.Update.Delay.In.Days";
17  	
18  	/** Default set to 3 Days */
19  	final static int DEFAULT_UPDATE_DELAY = 3;
20  
21  	/** Allow Reporting mechanism to propose CustomField for Aggregation */
22  	final static String ALLOW_REPORT_ON_CUSTOMFIELD = "kaamelot.option.allow.report.on.customField";
23  	
24  	/** Allow Reporting mechanism to propose CustomField for Aggregation for only supported CustomField Type */
25  	final static String ALLOW_REPORT_ON_ONLY_SUPPORTED_CUSTOMFIELDTYPE  = "kaamelot.option.allow.report.on.only.supported.customFieldType";
26  
27  	/** Mentions if the current JIRA Instance has multi URL  */
28  	final static String MULTI_URL_JIRA = "kaamelot.option.is.multi.url";	
29  	
30  	/**  */
31  	final static String DEFAULT_AUTO_TRANSITION_SERVICE_SEARCHER_USER = "kaamelot.default.autotransitionservice.searcher.user";	
32  	
33  }