1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util.property;
17
18 import org.kuali.common.util.Project;
19
20 public class ProjectProperties {
21
22 Project project;
23 PropertiesContext propertiesContext;
24
25 public ProjectProperties() {
26 this(null, null);
27 }
28
29 public ProjectProperties(Project project, PropertiesContext propertiesContext) {
30 super();
31 this.project = project;
32 this.propertiesContext = propertiesContext;
33 }
34
35 public Project getProject() {
36 return project;
37 }
38
39 public void setProject(Project project) {
40 this.project = project;
41 }
42
43 public PropertiesContext getPropertiesContext() {
44 return propertiesContext;
45 }
46
47 public void setPropertiesContext(PropertiesContext propertiesContext) {
48 this.propertiesContext = propertiesContext;
49 }
50
51 }