Coverage Report - org.kuali.rice.kew.dto.DocumentStatusTransitionDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentStatusTransitionDTO
0%
0/16
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2009 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  
 
 21  
 /**
 22  
  * Transport object for DocumentStatusTransition
 23  
  * 
 24  
  * @author Kuali Rice Team (kuali-rice@googlegroups.com)
 25  
  */
 26  0
 public class DocumentStatusTransitionDTO implements Serializable{
 27  
                 
 28  
         private static final long serialVersionUID = -5694589806200056472L;
 29  
         
 30  
         private String statusTransitionId;
 31  
         private String documentId;
 32  
         private String oldAppDocStatus;
 33  
         private String newAppDocStatus;
 34  
         private java.sql.Timestamp statusTransitionDate;
 35  
         
 36  
         public String getStatusTransitionId() {
 37  0
                 return this.statusTransitionId;
 38  
         }
 39  
         public void setStatusTransitionId(String statusTransitionId) {
 40  0
                 this.statusTransitionId = statusTransitionId;
 41  0
         }
 42  
         public String getDocumentId() {
 43  0
                 return this.documentId;
 44  
         }
 45  
         public void setDocumentId(String documentId) {
 46  0
                 this.documentId = documentId;
 47  0
         }
 48  
         public String getOldAppDocStatus() {
 49  0
                 return this.oldAppDocStatus;
 50  
         }
 51  
         public void setOldAppDocStatus(String oldAppDocStatus) {
 52  0
                 this.oldAppDocStatus = oldAppDocStatus;
 53  0
         }
 54  
         public String getNewAppDocStatus() {
 55  0
                 return this.newAppDocStatus;
 56  
         }
 57  
         public void setNewAppDocStatus(String newAppDocStatus) {
 58  0
                 this.newAppDocStatus = newAppDocStatus;
 59  0
         }
 60  
         public java.sql.Timestamp getStatusTransitionDate() {
 61  0
                 return this.statusTransitionDate;
 62  
         }
 63  
         public void setStatusTransitionDate(java.sql.Timestamp statusTransitionDate) {
 64  0
                 this.statusTransitionDate = statusTransitionDate;
 65  0
         }
 66  
         
 67  
  
 68  
 }