View Javadoc
1   /**
2    * Copyright 2010-2014 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.common.util;
17  
18  import java.util.List;
19  import java.util.Properties;
20  
21  @Deprecated
22  public class Project {
23  
24  	// org.kuali
25  	String orgId;
26  
27  	// org/kuali
28  	String orgPath;
29  
30  	// kuali
31  	String orgCode;
32  
33  	// org.kuali.student.web
34  	String groupId;
35  
36  	// org.kuali.student
37  	@Deprecated
38  	String groupIdBase;
39  
40  	// student
41  	String groupCode;
42  
43  	// ks-with-rice-bundled
44  	String artifactId;
45  
46  	// 2.0.0
47  	String version;
48  
49  	// Optional - typically "webapp" or something similar
50  	String classifier;
51  
52  	// KS with Rice Bundled
53  	String name;
54  
55  	// Kuali Student bundled as a completely standalone application that includes Kuali Rice bundled inside
56  	String description;
57  
58  	// UTF-8
59  	String encoding;
60  
61  	// Jar, war
62  	String packaging;
63  
64  	// Allow for storage of miscellaneous other properties related to the project
65  	Properties properties;
66  
67  	// These are just the dependencies declared directly in the pom, nothing inherited, nothing transitive
68  	List<Dependency> dependencies;
69  
70  	public String getOrgId() {
71  		return orgId;
72  	}
73  
74  	public void setOrgId(String orgId) {
75  		this.orgId = orgId;
76  	}
77  
78  	public String getOrgCode() {
79  		return orgCode;
80  	}
81  
82  	public void setOrgCode(String orgCode) {
83  		this.orgCode = orgCode;
84  	}
85  
86  	public String getGroupId() {
87  		return groupId;
88  	}
89  
90  	public void setGroupId(String groupId) {
91  		this.groupId = groupId;
92  	}
93  
94  	@Deprecated
95  	public String getGroupIdBase() {
96  		return groupIdBase;
97  	}
98  
99  	@Deprecated
100 	public void setGroupIdBase(String groupIdBase) {
101 		this.groupIdBase = groupIdBase;
102 	}
103 
104 	public String getGroupCode() {
105 		return groupCode;
106 	}
107 
108 	public void setGroupCode(String groupCode) {
109 		this.groupCode = groupCode;
110 	}
111 
112 	public String getArtifactId() {
113 		return artifactId;
114 	}
115 
116 	public void setArtifactId(String artifactId) {
117 		this.artifactId = artifactId;
118 	}
119 
120 	public String getVersion() {
121 		return version;
122 	}
123 
124 	public void setVersion(String version) {
125 		this.version = version;
126 	}
127 
128 	public String getName() {
129 		return name;
130 	}
131 
132 	public void setName(String name) {
133 		this.name = name;
134 	}
135 
136 	public String getDescription() {
137 		return description;
138 	}
139 
140 	public void setDescription(String description) {
141 		this.description = description;
142 	}
143 
144 	public String getEncoding() {
145 		return encoding;
146 	}
147 
148 	public void setEncoding(String encoding) {
149 		this.encoding = encoding;
150 	}
151 
152 	public String getOrgPath() {
153 		return orgPath;
154 	}
155 
156 	public void setOrgPath(String orgPath) {
157 		this.orgPath = orgPath;
158 	}
159 
160 	public String getClassifier() {
161 		return classifier;
162 	}
163 
164 	public void setClassifier(String classifier) {
165 		this.classifier = classifier;
166 	}
167 
168 	public String getPackaging() {
169 		return packaging;
170 	}
171 
172 	public void setPackaging(String packaging) {
173 		this.packaging = packaging;
174 	}
175 
176 	public Properties getProperties() {
177 		return properties;
178 	}
179 
180 	public void setProperties(Properties properties) {
181 		this.properties = properties;
182 	}
183 
184 	public List<Dependency> getDependencies() {
185 		return dependencies;
186 	}
187 
188 	public void setDependencies(List<Dependency> dependencies) {
189 		this.dependencies = dependencies;
190 	}
191 
192 }