Coverage Report - org.kuali.rice.kew.dto.ActionItemDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionItemDTO
0%
0/58
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 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.kew.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.sql.Timestamp;
 20  
 
 21  
 /**
 22  
  * A transport object representing an ActionItem
 23  
  *
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  */
 26  0
 public class ActionItemDTO implements Serializable {
 27  
 
 28  
     private static final long serialVersionUID = -4545795435037464863L;
 29  
 
 30  
     private String actionItemId;
 31  
     private Timestamp dateAssigned;
 32  
     private String actionRequestCd;
 33  
     private String actionRequestId;
 34  
     private String documentId;
 35  
     private String docTitle;
 36  
     private String docLabel;
 37  
     private String docHandlerURL;
 38  
     private String docName;
 39  
     private String responsibilityId;
 40  
     private String roleName;
 41  
     private String dateAssignedString;
 42  
     private String actionToTake;
 43  
     private String delegationType;
 44  
     private Integer actionItemIndex;
 45  
 
 46  
     /**
 47  
      * Kim group id of the target group (if any... group object will be null if groupId is empty)
 48  
      */
 49  
     private String groupId;
 50  
 
 51  
     /**
 52  
      * Principal id of the target user (if any... user object will be null if workflowId is empty)
 53  
      */
 54  
     private String principalId;
 55  
     
 56  
     /**
 57  
      * Group id of the target delegator group (if any... delegatorgroup object will be null if delegatorgroupId is empty)
 58  
      */
 59  
     private String delegatorGroupId;
 60  
 
 61  
     /**
 62  
      * Principal id of the target delegator user (if any... delegatorUser object will be null if delegatorWorkflowId is empty)
 63  
      */
 64  
     private String delegatorPrincipalId;
 65  
 
 66  
     public String getActionItemId() {
 67  0
         return this.actionItemId;
 68  
     }
 69  
     public void setActionItemId(String actionItemId) {
 70  0
         this.actionItemId = actionItemId;
 71  0
     }
 72  
     public Timestamp getDateAssigned() {
 73  0
         return this.dateAssigned;
 74  
     }
 75  
     public void setDateAssigned(Timestamp dateAssigned) {
 76  0
         this.dateAssigned = dateAssigned;
 77  0
     }
 78  
     public String getActionRequestCd() {
 79  0
         return this.actionRequestCd;
 80  
     }
 81  
     public void setActionRequestCd(String actionRequestCd) {
 82  0
         this.actionRequestCd = actionRequestCd;
 83  0
     }
 84  
     public String getActionRequestId() {
 85  0
         return this.actionRequestId;
 86  
     }
 87  
     public void setActionRequestId(String actionRequestId) {
 88  0
         this.actionRequestId = actionRequestId;
 89  0
     }
 90  
     public String getDocumentId() {
 91  0
         return this.documentId;
 92  
     }
 93  
     public void setDocumentId(String documentId) {
 94  0
         this.documentId = documentId;
 95  0
     }
 96  
     public String getDocTitle() {
 97  0
         return this.docTitle;
 98  
     }
 99  
     public void setDocTitle(String docTitle) {
 100  0
         this.docTitle = docTitle;
 101  0
     }
 102  
     public String getDocLabel() {
 103  0
         return this.docLabel;
 104  
     }
 105  
     public void setDocLabel(String docLabel) {
 106  0
         this.docLabel = docLabel;
 107  0
     }
 108  
     public String getDocHandlerURL() {
 109  0
         return this.docHandlerURL;
 110  
     }
 111  
     public void setDocHandlerURL(String docHandlerURL) {
 112  0
         this.docHandlerURL = docHandlerURL;
 113  0
     }
 114  
     public String getDocName() {
 115  0
         return this.docName;
 116  
     }
 117  
     public void setDocName(String docName) {
 118  0
         this.docName = docName;
 119  0
     }
 120  
     public String getResponsibilityId() {
 121  0
         return this.responsibilityId;
 122  
     }
 123  
     public void setResponsibilityId(String responsibilityId) {
 124  0
         this.responsibilityId = responsibilityId;
 125  0
     }
 126  
     public String getRoleName() {
 127  0
         return this.roleName;
 128  
     }
 129  
     public void setRoleName(String roleName) {
 130  0
         this.roleName = roleName;
 131  0
     }
 132  
     public String getDateAssignedString() {
 133  0
         return this.dateAssignedString;
 134  
     }
 135  
     public void setDateAssignedString(String dateAssignedString) {
 136  0
         this.dateAssignedString = dateAssignedString;
 137  0
     }
 138  
     public String getActionToTake() {
 139  0
         return this.actionToTake;
 140  
     }
 141  
     public void setActionToTake(String actionToTake) {
 142  0
         this.actionToTake = actionToTake;
 143  0
     }
 144  
     public String getDelegationType() {
 145  0
         return this.delegationType;
 146  
     }
 147  
     public void setDelegationType(String delegationType) {
 148  0
         this.delegationType = delegationType;
 149  0
     }
 150  
     public Integer getActionItemIndex() {
 151  0
         return this.actionItemIndex;
 152  
     }
 153  
     public void setActionItemIndex(Integer actionItemIndex) {
 154  0
         this.actionItemIndex = actionItemIndex;
 155  0
     }
 156  
     public String getGroupId() {
 157  0
         return this.groupId;
 158  
     }
 159  
     public void setGroupId(String groupId) {
 160  0
         this.groupId = groupId;
 161  0
     }
 162  
     public String getPrincipalId() {
 163  0
         return this.principalId;
 164  
     }
 165  
     public void setPrincipalId(String principalId) {
 166  0
         this.principalId = principalId;
 167  0
     }
 168  
     public String getDelegatorGroupId() {
 169  0
         return this.delegatorGroupId;
 170  
     }
 171  
     public void setDelegatorGroupId(String delegatorGroupId) {
 172  0
         this.delegatorGroupId = delegatorGroupId;
 173  0
     }
 174  
     public String getDelegatorPrincipalId() {
 175  0
         return this.delegatorPrincipalId;
 176  
     }
 177  
     public void setDelegatorPrincipalId(String delegatorPrincipalId) {
 178  0
         this.delegatorPrincipalId = delegatorPrincipalId;
 179  0
     }
 180  
 
 181  
 }