AdminUserField.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.portal.business.user.attribute;

  35. import fr.paris.lutece.portal.business.file.File;
  36. import fr.paris.lutece.portal.business.user.AdminUser;

  37. /**
  38.  *
  39.  * AdminUserField
  40.  *
  41.  */
  42. public class AdminUserField
  43. {
  44.     private AdminUser _user;
  45.     private AttributeField _attributeField;
  46.     private IAttribute _attribute;
  47.     private String _value;
  48.     private int _nIdUserField;
  49.     private File _file;

  50.     /**
  51.      * Get user
  52.      *
  53.      * @return user
  54.      */
  55.     public AdminUser getUser( )
  56.     {
  57.         return _user;
  58.     }

  59.     /**
  60.      * Set user
  61.      *
  62.      * @param user
  63.      *            user
  64.      */
  65.     public void setUser( AdminUser user )
  66.     {
  67.         _user = user;
  68.     }

  69.     /**
  70.      * Get attribute field
  71.      *
  72.      * @return attribute field
  73.      */
  74.     public AttributeField getAttributeField( )
  75.     {
  76.         return _attributeField;
  77.     }

  78.     /**
  79.      * Set attribute field
  80.      *
  81.      * @param attributeField
  82.      *            attribute field
  83.      */
  84.     public void setAttributeField( AttributeField attributeField )
  85.     {
  86.         _attributeField = attributeField;
  87.     }

  88.     /**
  89.      * Get attribute
  90.      *
  91.      * @return attribute
  92.      */
  93.     public IAttribute getAttribute( )
  94.     {
  95.         return _attribute;
  96.     }

  97.     /**
  98.      * Set attribute
  99.      *
  100.      * @param attribute
  101.      *            attribute
  102.      */
  103.     public void setAttribute( IAttribute attribute )
  104.     {
  105.         _attribute = attribute;
  106.     }

  107.     /**
  108.      * Get value
  109.      *
  110.      * @return value
  111.      */
  112.     public String getValue( )
  113.     {
  114.         return _value;
  115.     }

  116.     /**
  117.      * Set value
  118.      *
  119.      * @param value
  120.      *            value
  121.      */
  122.     public void setValue( String value )
  123.     {
  124.         _value = value;
  125.     }

  126.     /**
  127.      * Get Id user field
  128.      *
  129.      * @return id user field
  130.      */
  131.     public int getIdUserField( )
  132.     {
  133.         return _nIdUserField;
  134.     }

  135.     /**
  136.      * Set id user field
  137.      *
  138.      * @param nIdUserField
  139.      *            id user field
  140.      */
  141.     public void setIdUserField( int nIdUserField )
  142.     {
  143.         _nIdUserField = nIdUserField;
  144.     }

  145.     /**
  146.      * Get file
  147.      *
  148.      * @return file
  149.      */
  150.     public File getFile( )
  151.     {
  152.         return _file;
  153.     }

  154.     /**
  155.      * Set file
  156.      *
  157.      * @param file
  158.      *            file
  159.      */
  160.     public void setFile( File file )
  161.     {
  162.         _file = file;
  163.     }
  164. }