AppointmentFilterDTO.java

/*
 * Copyright (c) 2002-2022, City of Paris
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *  1. Redistributions of source code must retain the above copyright notice
 *     and the following disclaimer.
 *
 *  2. Redistributions in binary form must reproduce the above copyright notice
 *     and the following disclaimer in the documentation and/or other materials
 *     provided with the distribution.
 *
 *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
 *     contributors may be used to endorse or promote products derived from
 *     this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * License 1.0
 */
package fr.paris.lutece.plugins.appointment.web.dto;

import java.sql.Date;
import java.util.ArrayList;
import java.util.List;

import fr.paris.lutece.plugins.appointment.business.user.User;

public class AppointmentFilterDTO extends User
{

    /**
     * Serial version UID
     */
    private static final long serialVersionUID = -8087511361613314595L;

    /**
     * The form Id
     */
    private int _nIdForm;

    /**
     * The starting date for the search
     */
    private Date _startingDateOfSearch;

    /**
     * the ending date for the search
     */
    private Date _endingDateOfSearch;

    /**
     * The starting time for the search
     */
    private String _strStartingTimeOfSearch;

    /**
     * the ending time for the search
     */
    private String _strEndingTimeOfSearch;

    /**
     * The reference of the appointment to search
     */
    private String _strReference;

    /**
     * The status
     */
    private int _status = -1;

    private List<Integer> _listIdAppointment = new ArrayList<>( );


    private String _orderBy;


    private boolean _orderAsc = true;

    /**
     * Get the form id
     * 
     * @return the form id
     */
    public int getIdForm( )
    {
        return _nIdForm;
    }

    /**
     * Set the form id
     * 
     * @param nIdForm
     *            the form id to set
     */
    public void setIdForm( int nIdForm )
    {
        this._nIdForm = nIdForm;
    }

    /**
     * Get the starting date of search
     * 
     * @return the starting date of search
     */
    public Date getStartingDateOfSearch( )
    {
        if ( _startingDateOfSearch != null )
        {
            return (Date) _startingDateOfSearch.clone( );
        }
        else
        {
            return null;
        }
    }

    /**
     * Set the starting date of search
     * 
     * @param startingDateOfSearch
     *            the starting date to set
     */
    public void setStartingDateOfSearch( Date startingDateOfSearch )
    {
        if ( startingDateOfSearch != null )
        {
            this._startingDateOfSearch = (Date) startingDateOfSearch.clone( );
        }
        else
        {
            this._startingDateOfSearch = null;
        }
    }

    /**
     * Get the ending date of search
     * 
     * @return the ending date
     */
    public Date getEndingDateOfSearch( )
    {
        if ( _endingDateOfSearch != null )
        {
            return (Date) _endingDateOfSearch.clone( );
        }
        else
        {
            return null;
        }

    }

    /**
     * Set the ending date of search to the filter
     * 
     * @param endingDateOfSearch
     *            the ending date of search to set
     */
    public void setEndingDateOfSearch( Date endingDateOfSearch )
    {
        if ( endingDateOfSearch != null )
        {
            this._endingDateOfSearch = (Date) endingDateOfSearch.clone( );
        }
        else
        {
            this._endingDateOfSearch = null;
        }
    }

    /**
     * Get the starting time of search
     * 
     * @return the starting time of search
     */
    public String getStartingTimeOfSearch( )
    {
        return _strStartingTimeOfSearch;
    }

    /**
     * Set the starting time of search
     * 
     * @param strStartingTimeOfSearch
     *            the starting time to set
     */
    public void setStartingTimeOfSearch( String strStartingTimeOfSearch )
    {
        this._strStartingTimeOfSearch = strStartingTimeOfSearch;
    }

    /**
     * Get the ending time of search
     * 
     * @return the ending time of search
     */
    public String getEndingTimeOfSearch( )
    {
        return _strEndingTimeOfSearch;
    }

    /**
     * Set the ending time of search
     * 
     * @param strEndingTimeOfSearch
     *            the ending time to set
     */
    public void setEndingTimeOfSearch( String strEndingTimeOfSearch )
    {
        this._strEndingTimeOfSearch = strEndingTimeOfSearch;
    }

    /**
     * Get the reference entered in the filter
     * 
     * @return the reference
     */
    public String getReference( )
    {
        return _strReference;
    }

    /**
     * Set the reference to the filter
     * 
     * @param strReference
     *            the reference to set
     */
    public void setReference( String strReference )
    {
        this._strReference = strReference;
    }

    /**
     * Get the status entered in the filter
     * 
     * @return the status selected
     */
    public int getStatus( )
    {
        return _status;
    }

    /**
     * Set the status to the filter
     * 
     * @param status
     *            the status to set
     */
    public void setStatus( int status )
    {
        this._status = status;
    }

    /**
     * @return the listIdAppointment
     */
    public List<Integer> getListIdAppointment( )
    {
        return new ArrayList<>( _listIdAppointment );
    }

    /**
     * @param listIdAppointment
     *            the listIdAppointment to set
     */
    public void setListIdAppointment( List<Integer> listIdAppointment )
    {
        _listIdAppointment = new ArrayList<>( listIdAppointment );
    }

    public String getOrderBy() {
        return _orderBy;
    }

    public void setOrderBy(String orderBy) {
        this._orderBy = orderBy;
    }

    public boolean isOrderAsc() {
        return _orderAsc;
    }

    public void setOrderAsc(boolean orderAsc) {
        this._orderAsc = orderAsc;
    }
}