1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.contract.model; |
17 | |
|
18 | |
import org.kuali.student.contract.model.Constraint; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
public class TypeStateConstraint |
25 | |
{ |
26 | |
|
27 | |
public TypeStateConstraint (String type, String state, Constraint constraint) |
28 | 0 | { |
29 | 0 | this.type = type; |
30 | 0 | this.state = state; |
31 | 0 | this.constraint = constraint; |
32 | 0 | } |
33 | |
|
34 | |
|
35 | |
private String type; |
36 | |
|
37 | |
public String getType () |
38 | |
{ |
39 | 0 | return type; |
40 | |
} |
41 | |
|
42 | |
public void setType (String type) |
43 | |
{ |
44 | 0 | this.type = type; |
45 | 0 | } |
46 | |
|
47 | |
private String state; |
48 | |
|
49 | |
public String getState () |
50 | |
{ |
51 | 0 | return state; |
52 | |
} |
53 | |
|
54 | |
public void setState (String state) |
55 | |
{ |
56 | 0 | this.state = state; |
57 | 0 | } |
58 | |
|
59 | |
private Constraint constraint; |
60 | |
|
61 | |
public Constraint getConstraint () |
62 | |
{ |
63 | 0 | return constraint; |
64 | |
} |
65 | |
|
66 | |
public void setConstraint (Constraint constraint) |
67 | |
{ |
68 | 0 | this.constraint = constraint; |
69 | 0 | } |
70 | |
|
71 | |
} |