View Javadoc

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.io.Serializable;
19  
20  /**
21   * @author Kuali Rice Team (rice.collab@kuali.org)
22   */
23  public class RoleResponsibilityInfo implements Serializable {
24  
25  	private static final long serialVersionUID = 1L;
26  
27  	protected String roleResponsibilityId;
28  	protected String roleId;
29  	protected String responsibilityId;
30  	protected KimResponsibilityInfo kimResponsibilityInfo;
31  	/**
32  	 * @return the kimResponsibility
33  	 */
34  	public KimResponsibilityInfo getKimResponsibilityInfo() {
35  		return this.kimResponsibilityInfo;
36  	}
37  	/**
38  	 * @param kimResponsibility the kimResponsibility to set
39  	 */
40  	public void setKimResponsibilityInfo(KimResponsibilityInfo kimResponsibilityInfo) {
41  		this.kimResponsibilityInfo = kimResponsibilityInfo;
42  	}
43  	/**
44  	 * @return the responsibilityId
45  	 */
46  	public String getResponsibilityId() {
47  		return this.responsibilityId;
48  	}
49  	/**
50  	 * @param responsibilityId the responsibilityId to set
51  	 */
52  	public void setResponsibilityId(String responsibilityId) {
53  		this.responsibilityId = responsibilityId;
54  	}
55  	/**
56  	 * @return the roleId
57  	 */
58  	public String getRoleId() {
59  		return this.roleId;
60  	}
61  	/**
62  	 * @param roleId the roleId to set
63  	 */
64  	public void setRoleId(String roleId) {
65  		this.roleId = roleId;
66  	}
67  	/**
68  	 * @return the roleResponsibilityId
69  	 */
70  	public String getRoleResponsibilityId() {
71  		return this.roleResponsibilityId;
72  	}
73  	/**
74  	 * @param roleResponsibilityId the roleResponsibilityId to set
75  	 */
76  	public void setRoleResponsibilityId(String roleResponsibilityId) {
77  		this.roleResponsibilityId = roleResponsibilityId;
78  	}
79  
80  }