1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.deploy.config;
17
18
19
20
21
22 @Deprecated
23 public enum KualiDeployConfig implements org.kuali.common.util.config.ProjectConfig {
24
25 DEFAULT();
26
27 private final String contextId;
28 private final String configId;
29
30 private KualiDeployConfig() {
31 this(null);
32 }
33
34 private KualiDeployConfig(String contextId) {
35 this.contextId = contextId;
36 this.configId = org.kuali.common.util.config.ConfigUtils.getConfigId(this);
37 }
38
39 @Override
40 public String getGroupId() {
41 return DeployProjectConstants.GROUP_ID;
42 }
43
44 @Override
45 public String getArtifactId() {
46 return DeployProjectConstants.ARTIFACT_ID;
47 }
48
49 @Override
50 public String getContextId() {
51 return contextId;
52 }
53
54 @Override
55 public String getConfigId() {
56 return configId;
57 }
58
59 }