001    /**
002     * Copyright 2004-2013 The Kuali Foundation
003     *
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.opensource.org/licenses/ecl2.php
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.hr.time.workflow;
017    
018    import java.util.Date;
019    
020    import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
021    
022    public class TimesheetDocumentHeader extends PersistableBusinessObjectBase {
023    
024            private static final long serialVersionUID = 1L;
025            private String documentId;
026            private String principalId;
027            private Date payBeginDate;
028            private Date payEndDate;
029            private String documentStatus;
030    
031            public TimesheetDocumentHeader() {
032                    
033            }
034            
035            public TimesheetDocumentHeader(String documentId, String principalId, Date payBeginDate, Date payEndDate, String documentStatus) {
036                    this.documentId = documentId;
037                    this.principalId = principalId;
038                    this.payBeginDate = payBeginDate;
039                    this.payEndDate = payEndDate;
040                    this.documentStatus = documentStatus;
041            }
042    
043            public String getDocumentId() {
044                    return documentId;
045            }
046    
047            public void setDocumentId(String documentId) {
048                    this.documentId = documentId;
049            }
050    
051            public String getPrincipalId() {
052                    return principalId;
053            }
054    
055            public void setPrincipalId(String principalId) {
056                    this.principalId = principalId;
057            }
058    
059            public Date getPayEndDate() {
060                    return payEndDate;
061            }
062    
063            public void setPayEndDate(Date payEndDate) {
064                    this.payEndDate = payEndDate;
065            }
066    
067            public String getDocumentStatus() {
068                    return documentStatus;
069            }
070    
071            public void setDocumentStatus(String documentStatus) {
072                    this.documentStatus = documentStatus;
073            }
074    
075        public Date getPayBeginDate() {
076                    return payBeginDate;
077            }
078    
079            public void setPayBeginDate(Date payBeginDate) {
080                    this.payBeginDate = payBeginDate;
081            }
082    
083    }