net.sourceforge.fenixedu.webServices.jersey.beans.publico.FenixInterval.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.fenixedu.webServices.jersey.beans.publico.FenixInterval.java

Source

/**
 * Copyright  2002 Instituto Superior Tcnico
 *
 * This file is part of FenixEdu Core.
 *
 * FenixEdu Core is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * FenixEdu Core is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with FenixEdu Core.  If not, see <http://www.gnu.org/licenses/>.
 */
package net.sourceforge.fenixedu.webServices.jersey.beans.publico;

import org.joda.time.DateTime;
import org.joda.time.Interval;

public class FenixInterval {

    String start;
    String end;

    public FenixInterval(final String start, final String end) {
        this.start = start;
        this.end = end;
    }

    public FenixInterval(final DateTime start, final DateTime end) {
        this.start = start == null ? null : start.toString("yyyy-MM-dd HH:mm:ss");
        this.end = end == null ? null : end.toString("yyyy-MM-dd HH:mm:ss");
    }

    public FenixInterval(final Interval interval) {
        this(interval.getStart(), interval.getEnd());
    }

    public String getStart() {
        return start;
    }

    public void setStart(String start) {
        this.start = start;
    }

    public String getEnd() {
        return end;
    }

    public void setEnd(String end) {
        this.end = end;
    }

}