1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.core.organization.ui.client.mvc.model; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.ArrayList; |
20 | |
|
21 | 0 | public class OrgPositionPersonRelationInfo implements Serializable{ |
22 | |
private static final long serialVersionUID = 1L; |
23 | |
private ArrayList<String> personId; |
24 | |
private String orgId; |
25 | |
private String title; |
26 | |
private String orgPersonRelationTypeKey; |
27 | |
private String desc; |
28 | |
private String minNumRelations; |
29 | |
private String maxNumRelations; |
30 | |
|
31 | |
public ArrayList<String> getPersonId(){ |
32 | 0 | return this.personId; |
33 | |
} |
34 | |
|
35 | |
public void setPersonId(ArrayList<String> personId){ |
36 | 0 | this.personId=personId; |
37 | 0 | } |
38 | |
|
39 | |
public String getOrgId(){ |
40 | 0 | return this.orgId; |
41 | |
} |
42 | |
|
43 | |
public void setOrgId(String orgId){ |
44 | 0 | this.orgId=orgId; |
45 | 0 | } |
46 | |
|
47 | |
public String getTitle(){ |
48 | 0 | return this.title; |
49 | |
} |
50 | |
|
51 | |
public void setTitle(String title){ |
52 | 0 | this.title=title; |
53 | 0 | } |
54 | |
|
55 | |
public String getOrgPersonRelationTypeKey(){ |
56 | 0 | return this.orgPersonRelationTypeKey; |
57 | |
} |
58 | |
|
59 | |
public void setOrgPersonRelationTypeKey(String orgPersonRelationTypeKey){ |
60 | 0 | this.orgPersonRelationTypeKey=orgPersonRelationTypeKey; |
61 | 0 | } |
62 | |
|
63 | |
public String getDesc(){ |
64 | 0 | return this.desc; |
65 | |
} |
66 | |
|
67 | |
public void setDesc(String desc){ |
68 | 0 | this.desc=desc; |
69 | 0 | } |
70 | |
|
71 | |
public String getMinNumRelations(){ |
72 | 0 | return this.minNumRelations; |
73 | |
} |
74 | |
|
75 | |
public void setMinNumRelations(String minNumRelations){ |
76 | 0 | this.minNumRelations=minNumRelations; |
77 | 0 | } |
78 | |
|
79 | |
public String getMaxNumRelations(){ |
80 | 0 | return this.maxNumRelations; |
81 | |
} |
82 | |
|
83 | |
public void setMaxNumRelations(String maxNumRelations){ |
84 | 0 | this.maxNumRelations=maxNumRelations; |
85 | 0 | } |
86 | |
|
87 | |
|
88 | |
} |