001/*
002 * Copyright 2010 The Kuali Foundation 
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the
005 * "License"); you may not use this file except in compliance with the
006 * License. You may obtain a copy of the License at
007 *
008 * http://www.osedu.org/licenses/ECL-2.0
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
013 * implied. See the License for the specific language governing
014 * permissions and limitations under the License.
015 */
016
017package org.kuali.student.r2.common.dto;
018
019import java.io.Serializable;
020import java.util.Date;
021import java.util.List;
022
023import javax.xml.bind.annotation.XmlAccessType;
024import javax.xml.bind.annotation.XmlAccessorType;
025import javax.xml.bind.annotation.XmlAnyElement;
026import javax.xml.bind.annotation.XmlElement;
027import javax.xml.bind.annotation.XmlType;
028
029import org.kuali.student.r2.common.infc.DateRange;
030//import org.w3c.dom.Element;
031
032/**
033 * A DTO for a date range.
034 *
035 * @author tom
036 */
037
038@XmlAccessorType(XmlAccessType.FIELD)
039@XmlType(name = "DateRangeInfo", propOrder = {
040                "startDate", "endDate" , "_futureElements" }) 
041
042public class DateRangeInfo 
043    implements DateRange, Serializable {
044        
045    private static final long serialVersionUID = 1L;
046
047    @XmlElement
048    private Date startDate;
049    
050    @XmlElement
051    private Date endDate;
052    
053    
054    @XmlAnyElement
055    private List<Object> _futureElements;   
056    
057
058    /**
059     *  Constructs a new DateRangeInfo.
060     */
061    public DateRangeInfo() {
062    }
063        
064    /**
065     * Constructs a new DateRangeInfo from another DateRange.
066     *
067     * @param dateRange the DateRange to copy
068     */
069    public DateRangeInfo(DateRange dateRange) {
070        if (dateRange != null) {
071            if (dateRange.getStartDate() != null) {
072                this.startDate = new Date(dateRange.getStartDate().getTime());
073            }
074
075            if (dateRange.getEndDate() != null) {
076                this.endDate = new Date(dateRange.getEndDate().getTime());
077            }
078        }
079    }
080
081    @Override
082    public Date getStartDate() {
083        return startDate;
084    }
085
086    public void setStartDate(Date startDate) {
087        this.startDate = startDate;
088    }
089
090    @Override
091    public Date getEndDate() {
092        return endDate;
093    }
094
095    public void setEndDate(Date endDate) {
096        this.endDate = endDate;
097    }
098}