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