View Javadoc
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  
36  import fr.paris.lutece.portal.business.file.File;
37  import fr.paris.lutece.portal.business.user.AdminUser;
38  
39  /**
40   *
41   * AdminUserField
42   *
43   */
44  public class AdminUserField
45  {
46      private AdminUser _user;
47      private AttributeField _attributeField;
48      private IAttribute _attribute;
49      private String _value;
50      private int _nIdUserField;
51      private File _file;
52  
53      /**
54       * Get user
55       * 
56       * @return user
57       */
58      public AdminUser getUser( )
59      {
60          return _user;
61      }
62  
63      /**
64       * Set user
65       * 
66       * @param user
67       *            user
68       */
69      public void setUser( AdminUser user )
70      {
71          _user = user;
72      }
73  
74      /**
75       * Get attribute field
76       * 
77       * @return attribute field
78       */
79      public AttributeField getAttributeField( )
80      {
81          return _attributeField;
82      }
83  
84      /**
85       * Set attribute field
86       * 
87       * @param attributeField
88       *            attribute field
89       */
90      public void setAttributeField( AttributeField attributeField )
91      {
92          _attributeField = attributeField;
93      }
94  
95      /**
96       * Get attribute
97       * 
98       * @return attribute
99       */
100     public IAttribute getAttribute( )
101     {
102         return _attribute;
103     }
104 
105     /**
106      * Set attribute
107      * 
108      * @param attribute
109      *            attribute
110      */
111     public void setAttribute( IAttribute attribute )
112     {
113         _attribute = attribute;
114     }
115 
116     /**
117      * Get value
118      * 
119      * @return value
120      */
121     public String getValue( )
122     {
123         return _value;
124     }
125 
126     /**
127      * Set value
128      * 
129      * @param value
130      *            value
131      */
132     public void setValue( String value )
133     {
134         _value = value;
135     }
136 
137     /**
138      * Get Id user field
139      * 
140      * @return id user field
141      */
142     public int getIdUserField( )
143     {
144         return _nIdUserField;
145     }
146 
147     /**
148      * Set id user field
149      * 
150      * @param nIdUserField
151      *            id user field
152      */
153     public void setIdUserField( int nIdUserField )
154     {
155         _nIdUserField = nIdUserField;
156     }
157 
158     /**
159      * Get file
160      * 
161      * @return file
162      */
163     public File getFile( )
164     {
165         return _file;
166     }
167 
168     /**
169      * Set file
170      * 
171      * @param file
172      *            file
173      */
174     public void setFile( File file )
175     {
176         _file = file;
177     }
178 }