Coverage Report - org.kuali.rice.kew.dto.ActionTakenDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionTakenDTO
0%
0/34
N/A
1
 
 1  
 /*
 2  
  * Copyright 2005-2008 The Kuali Foundation
 3  
  * 
 4  
  * 
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  * 
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  * 
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.dto;
 18  
 
 19  
 import java.io.Serializable;
 20  
 import java.util.Calendar;
 21  
 
 22  
 /**
 23  
  * A transport object representing an ActionTakenValue
 24  
  * 
 25  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 26  
  * 
 27  
  */
 28  
 public class ActionTakenDTO implements Serializable {
 29  
     static final long serialVersionUID = -8818100923517546091L;
 30  
     private String actionTakenId;
 31  
     private String documentId;
 32  
     private Integer docVersion;
 33  
     private String principalId;
 34  
     private String delegatorPrincpalId;
 35  
     private String delegatorGroupId;
 36  
     private String actionTaken;
 37  
     private Calendar actionDate;
 38  0
     private String annotation = null;
 39  0
     private ActionRequestDTO[] actionRequests = new ActionRequestDTO[0];
 40  
 
 41  0
     public ActionTakenDTO() {
 42  0
     }
 43  
 
 44  
     public ActionRequestDTO[] getActionRequests() {
 45  0
                 return this.actionRequests;
 46  
         }
 47  
 
 48  
         public void setActionRequests(ActionRequestDTO[] actionRequests) {
 49  0
                 this.actionRequests = actionRequests;
 50  0
         }
 51  
 
 52  
         public Calendar getActionDate() {
 53  0
         return actionDate;
 54  
     }
 55  
 
 56  
     public String getActionTaken() {
 57  0
         return actionTaken;
 58  
     }
 59  
 
 60  
     public String getActionTakenId() {
 61  0
         return actionTakenId;
 62  
     }
 63  
 
 64  
     public String getAnnotation() {
 65  0
         return annotation;
 66  
     }
 67  
 
 68  
     public Integer getDocVersion() {
 69  0
         return docVersion;
 70  
     }
 71  
 
 72  
     public String getDocumentId() {
 73  0
         return documentId;
 74  
     }
 75  
 
 76  
     public void setDocumentId(String documentId) {
 77  0
         this.documentId = documentId;
 78  0
     }
 79  
 
 80  
     public void setDocVersion(Integer docVersion) {
 81  0
         this.docVersion = docVersion;
 82  0
     }
 83  
 
 84  
     public void setAnnotation(String annotation) {
 85  0
         this.annotation = annotation;
 86  0
     }
 87  
 
 88  
     public void setActionTakenId(String actionTakenId) {
 89  0
         this.actionTakenId = actionTakenId;
 90  0
     }
 91  
 
 92  
     public void setActionTaken(String actionTaken) {
 93  0
         this.actionTaken = actionTaken;
 94  0
     }
 95  
 
 96  
     public void setActionDate(Calendar actionDate) {
 97  0
         this.actionDate = actionDate;
 98  0
     }
 99  
 
 100  
         public String getPrincipalId() {
 101  0
                 return this.principalId;
 102  
         }
 103  
 
 104  
         public void setPrincipalId(String principalId) {
 105  0
                 this.principalId = principalId;
 106  0
         }
 107  
 
 108  
         public String getDelegatorPrincpalId() {
 109  0
                 return this.delegatorPrincpalId;
 110  
         }
 111  
 
 112  
         public void setDelegatorPrincpalId(String delegatorPrincpalId) {
 113  0
                 this.delegatorPrincpalId = delegatorPrincpalId;
 114  0
         }
 115  
 
 116  
         public String getDelegatorGroupId() {
 117  0
                 return this.delegatorGroupId;
 118  
         }
 119  
 
 120  
         public void setDelegatorGroupId(String delegatorGroupId) {
 121  0
                 this.delegatorGroupId = delegatorGroupId;
 122  0
         }
 123  
 
 124  
 }