1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.contract.model; |
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
|
22 | 0 | public class Project { |
23 | |
|
24 | |
private String key; |
25 | |
|
26 | |
public String getKey() { |
27 | 0 | return key; |
28 | |
} |
29 | |
|
30 | |
public void setKey(String key) { |
31 | 0 | this.key = key; |
32 | 0 | } |
33 | |
private String type; |
34 | |
|
35 | |
public String getType() { |
36 | 0 | return type; |
37 | |
} |
38 | |
|
39 | |
public void setType(String type) { |
40 | 0 | this.type = type; |
41 | 0 | } |
42 | |
private String name; |
43 | |
|
44 | |
public String getName() { |
45 | 0 | return name; |
46 | |
} |
47 | |
|
48 | |
public void setName(String name) { |
49 | 0 | this.name = name; |
50 | 0 | } |
51 | |
private String description; |
52 | |
|
53 | |
public String getDescription() { |
54 | 0 | return description; |
55 | |
} |
56 | |
|
57 | |
public void setDescription(String description) { |
58 | 0 | this.description = description; |
59 | 0 | } |
60 | |
private String directory; |
61 | |
|
62 | |
public String getDirectory() { |
63 | 0 | return directory; |
64 | |
} |
65 | |
|
66 | |
public void setDirectory(String directory) { |
67 | 0 | this.directory = directory; |
68 | 0 | } |
69 | |
private String javaDirectory; |
70 | |
|
71 | |
public String getJavaDirectory() { |
72 | 0 | return javaDirectory; |
73 | |
} |
74 | |
|
75 | |
public void setJavaDirectory(String javaDirectory) { |
76 | 0 | this.javaDirectory = javaDirectory; |
77 | 0 | } |
78 | |
private String resourcesDirectory; |
79 | |
|
80 | |
public String getResourcesDirectory() { |
81 | 0 | return resourcesDirectory; |
82 | |
} |
83 | |
|
84 | |
public void setResourcesDirectory(String resourcesDirectory) { |
85 | 0 | this.resourcesDirectory = resourcesDirectory; |
86 | 0 | } |
87 | |
private String status; |
88 | |
|
89 | |
public String getStatus() { |
90 | 0 | return status; |
91 | |
} |
92 | |
|
93 | |
public void setStatus(String status) { |
94 | 0 | this.status = status; |
95 | 0 | } |
96 | |
private String comments; |
97 | |
|
98 | |
public String getComments() { |
99 | 0 | return comments; |
100 | |
} |
101 | |
|
102 | |
public void setComments(String comments) { |
103 | 0 | this.comments = comments; |
104 | 0 | } |
105 | |
} |