1
2
3 package fr.kaamelot.addon;
4
5
6
7 public class PluginInfos {
8
9 private static String downloadServletPath = "/download/resources/";
10
11 private static String pluginKey = "jira.plugin.kaamelot.core";
12
13 private static String webworkKey = "Actions";
14
15
16
17
18
19 public static String getPluginKey() {
20 return pluginKey;
21 }
22
23
24
25
26 public static String getWebworkKey() {
27 return webworkKey;
28 }
29
30
31
32
33 public static String getPluginDownloadPath() {
34 return downloadServletPath + getPluginKey() + ":" + getWebworkKey();
35 }
36
37
38 }