DataTableFilter.java

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

  35. import fr.paris.lutece.util.ReferenceList;

  36. /**
  37.  * Class to filter data with a DataTableManager
  38.  */
  39. public class DataTableFilter
  40. {
  41.     private DataTableFilterType _filterType;
  42.     private String _strParameterName;
  43.     private String _strFilterLabel;
  44.     private String _strValue;
  45.     private ReferenceList _refList;

  46.     /**
  47.      * Creates a new filter
  48.      *
  49.      * @param filterType
  50.      *            The type of the filter
  51.      * @param strParameterName
  52.      *            The name of the parameter to filter
  53.      * @param strFilterLabel
  54.      *            The label of the filter
  55.      */
  56.     protected DataTableFilter( DataTableFilterType filterType, String strParameterName, String strFilterLabel )
  57.     {
  58.         _filterType = filterType;
  59.         _strParameterName = strParameterName;
  60.         _strFilterLabel = strFilterLabel;
  61.     }

  62.     /**
  63.      * Get the type of the filter
  64.      *
  65.      * @return The type of the filter
  66.      */
  67.     public DataTableFilterType getFilterType( )
  68.     {
  69.         return _filterType;
  70.     }

  71.     /**
  72.      * Set the type of the filter
  73.      *
  74.      * @param filterType
  75.      *            The type of the filter
  76.      */
  77.     protected void setFilterType( DataTableFilterType filterType )
  78.     {
  79.         _filterType = filterType;
  80.     }

  81.     /**
  82.      * Get the name of the parameter to filter
  83.      *
  84.      * @return The name of the parameter to filter
  85.      */
  86.     public String getParameterName( )
  87.     {
  88.         return _strParameterName;
  89.     }

  90.     /**
  91.      * Set the name of the parameter to filter
  92.      *
  93.      * @param strParameterName
  94.      *            The name of the parameter to filter
  95.      */
  96.     protected void setParameterName( String strParameterName )
  97.     {
  98.         _strParameterName = strParameterName;
  99.     }

  100.     /**
  101.      * Get the label of the filter
  102.      *
  103.      * @return The label of the filter
  104.      */
  105.     public String getFilterLabel( )
  106.     {
  107.         return _strFilterLabel;
  108.     }

  109.     /**
  110.      * Set the label of the filter
  111.      *
  112.      * @param strFilterLabel
  113.      *            The label of the filter
  114.      */
  115.     protected void setFilterLabel( String strFilterLabel )
  116.     {
  117.         _strFilterLabel = strFilterLabel;
  118.     }

  119.     /**
  120.      * Get the reference list of this filter
  121.      *
  122.      * @return The reference list of this filter
  123.      */
  124.     public ReferenceList getRefList( )
  125.     {
  126.         return _refList;
  127.     }

  128.     /**
  129.      * Set the reference list of this filter
  130.      *
  131.      * @param refList
  132.      *            The reference list of this filter
  133.      */
  134.     protected void setRefList( ReferenceList refList )
  135.     {
  136.         _refList = refList;
  137.     }

  138.     /**
  139.      * Get the current value of the filter
  140.      *
  141.      * @return The current value of the filter
  142.      */
  143.     public String getValue( )
  144.     {
  145.         return _strValue;
  146.     }

  147.     /**
  148.      * Set the current value of the filter
  149.      *
  150.      * @param strValue
  151.      *            The current value of the filter
  152.      */
  153.     protected void setValue( String strValue )
  154.     {
  155.         _strValue = strValue;
  156.     }
  157. }