Coverage Report - org.kuali.student.core.workflow.dto.WorkflowPersonInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
WorkflowPersonInfo
0%
0/29
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.core.workflow.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  
 import javax.xml.bind.annotation.XmlAccessType;
 21  
 import javax.xml.bind.annotation.XmlAccessorType;
 22  
 import javax.xml.bind.annotation.XmlRootElement;
 23  
 
 24  
 @XmlRootElement
 25  
 @XmlAccessorType(XmlAccessType.FIELD)
 26  0
 public class WorkflowPersonInfo implements Serializable{
 27  
 
 28  
         private static final long serialVersionUID = 1L;
 29  
 
 30  
         private String principalId;
 31  
         private String firstName;
 32  
         private String lastName;
 33  
         
 34  
         private String permission;
 35  
         private String action;
 36  
         
 37  
         private boolean author;
 38  0
         private boolean canRevokeRequest = false;
 39  
         private String actionRequestId;
 40  
         private String actionRequestStatus;
 41  
         
 42  
         public String getPrincipalId() {
 43  0
                 return principalId;
 44  
         }
 45  
         public void setPrincipalId(String principalId) {
 46  0
                 this.principalId = principalId;
 47  0
         }
 48  
         public String getFirstName() {
 49  0
                 return firstName;
 50  
         }
 51  
         public void setFirstName(String firstName) {
 52  0
                 this.firstName = firstName;
 53  0
         }
 54  
         public String getLastName() {
 55  0
                 return lastName;
 56  
         }
 57  
         public void setLastName(String lastName) {
 58  0
                 this.lastName = lastName;
 59  0
         }        
 60  
         public String getPermission() {
 61  0
                 return permission;
 62  
         }
 63  
         public void setPermission(String permission) {
 64  0
                 this.permission = permission;
 65  0
         }
 66  
         public String getAction() {
 67  0
                 return action;
 68  
         }
 69  
         public void setAction(String action) {
 70  0
                 this.action = action;
 71  0
         }        
 72  
         public boolean isAuthor() {
 73  0
                 return author;
 74  
         }
 75  
         public void setAuthor(boolean isAuthor) {
 76  0
                 this.author = isAuthor;
 77  0
         }
 78  
         public boolean isCanRevokeRequest() {
 79  0
             return canRevokeRequest;
 80  
     }
 81  
         public void setCanRevokeRequest(boolean canRevokeRequest) {
 82  0
             this.canRevokeRequest = canRevokeRequest;
 83  0
     }
 84  
         public String getActionRequestStatus() {
 85  0
             return actionRequestStatus;
 86  
     }
 87  
         public void setActionRequestStatus(String actionRequestStatus) {
 88  0
             this.actionRequestStatus = actionRequestStatus;
 89  0
     }
 90  
     public String getActionRequestId() {
 91  0
         return actionRequestId;
 92  
     }
 93  
     public void setActionRequestId(String actionRequestId) {
 94  0
         this.actionRequestId = actionRequestId;
 95  0
     }
 96  
 }