Coverage Report - org.kuali.rice.kim.bo.role.dto.DelegateTypeInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
DelegateTypeInfo
0%
0/26
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 java.io.Serializable;
 19  
 import java.util.List;
 20  
 
 21  
 /**
 22  
  * This is a description of what this class does - kellerj don't forget to fill this in. 
 23  
  * 
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  *
 26  
  */
 27  
 public class DelegateTypeInfo implements Serializable {
 28  
         
 29  
         private static final long serialVersionUID = 1L;
 30  
         
 31  
         protected String roleId;
 32  
         protected String delegationId;
 33  
         protected String delegationTypeCode;
 34  
         protected String kimTypeId;
 35  
         protected List<DelegateMemberCompleteInfo> members;
 36  
         protected Boolean active;
 37  
         //protected KimTypeInfo kimType;
 38  
         
 39  
         /**
 40  
          * @return the kimTypeId
 41  
          */
 42  
         public String getKimTypeId() {
 43  0
                 return this.kimTypeId;
 44  
         }
 45  
 
 46  
         /**
 47  
          * @param kimTypeId the kimTypeId to set
 48  
          */
 49  
         public void setKimTypeId(String kimTypeId) {
 50  0
                 this.kimTypeId = kimTypeId;
 51  0
         }
 52  
 
 53  
         /**
 54  
          * @return the active
 55  
          */
 56  
         public Boolean getActive() {
 57  0
                 return this.active;
 58  
         }
 59  
 
 60  
         /**
 61  
          * @param active the active to set
 62  
          */
 63  
         public void setActive(Boolean active) {
 64  0
                 this.active = active;
 65  0
         }
 66  
 
 67  
         /**
 68  
          * 
 69  
          */
 70  0
         public DelegateTypeInfo() {
 71  0
         }
 72  
         
 73  0
         public DelegateTypeInfo(String roleId, String delegationId, String delegationTypeCode, List<DelegateMemberCompleteInfo> members) {
 74  0
                 this.roleId = roleId;
 75  0
                 this.delegationId = delegationId;
 76  0
                 this.delegationTypeCode = delegationTypeCode;
 77  0
                 this.members = members;
 78  0
         }
 79  
         
 80  
         public String getDelegationTypeCode() {
 81  0
                 return this.delegationTypeCode;
 82  
         }
 83  
         public void setDelegationTypeCode(String delegationTypeCode) {
 84  0
                 this.delegationTypeCode = delegationTypeCode;
 85  0
         }
 86  
         public String getDelegationId() {
 87  0
                 return this.delegationId;
 88  
         }
 89  
 
 90  
         public void setDelegationId(String delegationId) {
 91  0
                 this.delegationId = delegationId;
 92  0
         }
 93  
 
 94  
         /**
 95  
          * @return the roleId
 96  
          */
 97  
         public String getRoleId() {
 98  0
                 return this.roleId;
 99  
         }
 100  
 
 101  
         /**
 102  
          * @param roleId the roleId to set
 103  
          */
 104  
         public void setRoleId(String roleId) {
 105  0
                 this.roleId = roleId;
 106  0
         }
 107  
 
 108  
         /**
 109  
          * @return the members
 110  
          */
 111  
         public List<DelegateMemberCompleteInfo> getMembers() {
 112  0
                 return this.members;
 113  
         }
 114  
 
 115  
         /**
 116  
          * @param members the members to set
 117  
          */
 118  
         public void setMembers(List<DelegateMemberCompleteInfo> members) {
 119  0
                 this.members = members;
 120  0
         }
 121  
         
 122  
         
 123  
 }