Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DelegateMemberCompleteInfo |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2008-2009 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.rice.kim.bo.role.dto; | |
17 | ||
18 | import java.sql.Date; | |
19 | ||
20 | import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; | |
21 | ||
22 | import org.kuali.rice.core.util.jaxb.SqlDateAdapter; | |
23 | ||
24 | /** | |
25 | * This is a description of what this class does - kellerj don't forget to fill this in. | |
26 | * | |
27 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
28 | * | |
29 | */ | |
30 | 0 | public class DelegateMemberCompleteInfo extends DelegateInfo { |
31 | ||
32 | private static final long serialVersionUID = 1L; | |
33 | ||
34 | protected String roleId; | |
35 | protected String delegationMemberId; | |
36 | protected String memberName; | |
37 | protected String memberNamespaceCode; | |
38 | ||
39 | /** | |
40 | * @return the memberName | |
41 | */ | |
42 | public String getMemberName() { | |
43 | 0 | return this.memberName; |
44 | } | |
45 | /** | |
46 | * @param memberName the memberName to set | |
47 | */ | |
48 | public void setMemberName(String memberName) { | |
49 | 0 | this.memberName = memberName; |
50 | 0 | } |
51 | /** | |
52 | * @return the memberNamespaceCode | |
53 | */ | |
54 | public String getMemberNamespaceCode() { | |
55 | 0 | return this.memberNamespaceCode; |
56 | } | |
57 | /** | |
58 | * @param memberNamespaceCode the memberNamespaceCode to set | |
59 | */ | |
60 | public void setMemberNamespaceCode(String memberNamespaceCode) { | |
61 | 0 | this.memberNamespaceCode = memberNamespaceCode; |
62 | 0 | } |
63 | ||
64 | /** | |
65 | * @return the delegationMemberId | |
66 | */ | |
67 | public String getDelegationMemberId() { | |
68 | 0 | return this.delegationMemberId; |
69 | } | |
70 | ||
71 | /** | |
72 | * @param delegationMemberId the delegationMemberId to set | |
73 | */ | |
74 | public void setDelegationMemberId(String delegationMemberId) { | |
75 | 0 | this.delegationMemberId = delegationMemberId; |
76 | 0 | } |
77 | ||
78 | /** | |
79 | * @return the roleId | |
80 | */ | |
81 | public String getRoleId() { | |
82 | 0 | return this.roleId; |
83 | } | |
84 | ||
85 | /** | |
86 | * @param roleId the roleId to set | |
87 | */ | |
88 | public void setRoleId(String roleId) { | |
89 | 0 | this.roleId = roleId; |
90 | 0 | } |
91 | ||
92 | } |