View Javadoc

1   /**
2    * Copyright 2004-2013 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.hr.time.workflow;
17  
18  import java.util.Date;
19  
20  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21  
22  public class TimesheetDocumentHeader extends PersistableBusinessObjectBase {
23  
24  	private static final long serialVersionUID = 1L;
25  	private String documentId;
26  	private String principalId;
27  	private Date payBeginDate;
28  	private Date payEndDate;
29  	private String documentStatus;
30  
31  	public TimesheetDocumentHeader() {
32  		
33  	}
34  	
35  	public TimesheetDocumentHeader(String documentId, String principalId, Date payBeginDate, Date payEndDate, String documentStatus) {
36  		this.documentId = documentId;
37  		this.principalId = principalId;
38  		this.payBeginDate = payBeginDate;
39  		this.payEndDate = payEndDate;
40  		this.documentStatus = documentStatus;
41  	}
42  
43  	public String getDocumentId() {
44  		return documentId;
45  	}
46  
47  	public void setDocumentId(String documentId) {
48  		this.documentId = documentId;
49  	}
50  
51  	public String getPrincipalId() {
52  		return principalId;
53  	}
54  
55  	public void setPrincipalId(String principalId) {
56  		this.principalId = principalId;
57  	}
58  
59  	public Date getPayEndDate() {
60  		return payEndDate;
61  	}
62  
63  	public void setPayEndDate(Date payEndDate) {
64  		this.payEndDate = payEndDate;
65  	}
66  
67  	public String getDocumentStatus() {
68  		return documentStatus;
69  	}
70  
71  	public void setDocumentStatus(String documentStatus) {
72  		this.documentStatus = documentStatus;
73  	}
74  
75      public Date getPayBeginDate() {
76  		return payBeginDate;
77  	}
78  
79  	public void setPayBeginDate(Date payBeginDate) {
80  		this.payBeginDate = payBeginDate;
81  	}
82  
83  }