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