Coverage Report - org.kuali.rice.kim.bo.role.dto.RoleResponsibilityActionInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
RoleResponsibilityActionInfo
0%
0/25
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  
 
 20  
 /**
 21  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 22  
  */
 23  0
 public class RoleResponsibilityActionInfo implements Serializable {
 24  
 
 25  
         protected String roleResponsibilityActionId;
 26  
         protected String roleResponsibilityId;
 27  
         protected String roleMemberId;
 28  
         protected String actionTypeCode;
 29  
         protected String actionPolicyCode;
 30  
         protected boolean forceAction;
 31  
         protected Integer priorityNumber;
 32  
         
 33  
         protected RoleResponsibilityInfo roleResponsibilityInfo;
 34  
         
 35  
         public String getRoleResponsibilityActionId() {
 36  0
                 return this.roleResponsibilityActionId;
 37  
         }
 38  
         public void setRoleResponsibilityActionId(String roleResponsibilityResolutionId) {
 39  0
                 this.roleResponsibilityActionId = roleResponsibilityResolutionId;
 40  0
         }
 41  
         public String getRoleResponsibilityId() {
 42  0
                 return this.roleResponsibilityId;
 43  
         }
 44  
         public void setRoleResponsibilityId(String roleResponsibilityId) {
 45  0
                 this.roleResponsibilityId = roleResponsibilityId;
 46  0
         }
 47  
         public String getActionTypeCode() {
 48  0
                 return this.actionTypeCode;
 49  
         }
 50  
         public void setActionTypeCode(String actionTypeCode) {
 51  0
                 this.actionTypeCode = actionTypeCode;
 52  0
         }
 53  
         public Integer getPriorityNumber() {
 54  0
                 return this.priorityNumber;
 55  
         }
 56  
         public void setPriorityNumber(Integer priorityNumber) {
 57  0
                 this.priorityNumber = priorityNumber;
 58  0
         }
 59  
         
 60  
         public String getActionPolicyCode() {
 61  0
                 return this.actionPolicyCode;
 62  
         }
 63  
         public void setActionPolicyCode(String actionPolicyCode) {
 64  0
                 this.actionPolicyCode = actionPolicyCode;
 65  0
         }
 66  
         public String getRoleMemberId() {
 67  0
                 return this.roleMemberId;
 68  
         }
 69  
         public void setRoleMemberId(String roleMemberId) {
 70  0
                 this.roleMemberId = roleMemberId;
 71  0
         }
 72  
         public RoleResponsibilityInfo getRoleResponsibilityInfo() {
 73  0
                 return this.roleResponsibilityInfo;
 74  
         }
 75  
         public void setRoleResponsibilityInfo(RoleResponsibilityInfo roleResponsibilityInfo) {
 76  0
                 this.roleResponsibilityInfo = roleResponsibilityInfo;
 77  0
         }
 78  
         /**
 79  
          * @return the forceAction
 80  
          */
 81  
         public boolean isForceAction() {
 82  0
                 return this.forceAction;
 83  
         }
 84  
         /**
 85  
          * @param forceAction the forceAction to set
 86  
          */
 87  
         public void setForceAction(boolean forceAction) {
 88  0
                 this.forceAction = forceAction;
 89  0
         }
 90  
 }