View Javadoc

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  public class DocumentStatusTransitionDTO implements Serializable{
27  		
28  	private static final long serialVersionUID = -5694589806200056472L;
29  	
30  	private Long statusTransitionId;
31  	private String documentId;
32  	private String oldAppDocStatus;
33  	private String newAppDocStatus;
34  	private java.sql.Timestamp statusTransitionDate;
35  	
36  	public Long getStatusTransitionId() {
37  		return this.statusTransitionId;
38  	}
39  	public void setStatusTransitionId(Long statusTransitionId) {
40  		this.statusTransitionId = statusTransitionId;
41  	}
42  	public String getDocumentId() {
43  		return this.documentId;
44  	}
45  	public void setDocumentId(String documentId) {
46  		this.documentId = documentId;
47  	}
48  	public String getOldAppDocStatus() {
49  		return this.oldAppDocStatus;
50  	}
51  	public void setOldAppDocStatus(String oldAppDocStatus) {
52  		this.oldAppDocStatus = oldAppDocStatus;
53  	}
54  	public String getNewAppDocStatus() {
55  		return this.newAppDocStatus;
56  	}
57  	public void setNewAppDocStatus(String newAppDocStatus) {
58  		this.newAppDocStatus = newAppDocStatus;
59  	}
60  	public java.sql.Timestamp getStatusTransitionDate() {
61  		return this.statusTransitionDate;
62  	}
63  	public void setStatusTransitionDate(java.sql.Timestamp statusTransitionDate) {
64  		this.statusTransitionDate = statusTransitionDate;
65  	}
66  	
67   
68  }