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.log;
35
36 import fr.paris.lutece.portal.service.util.AppPropertiesService;
37
38 /**
39 * This class represents business object UserLog
40 */
41 public class UserLog
42 {
43 // ///////////////////////////////////////////////////////////////////////////////
44 // Constants
45 public static final int LOGIN_OK = 1;
46 public static final int LOGIN_DENIED = 0;
47 private static final String PROPERTY_PASSWORD_LENGHT_MAX = "password.lenght.max";
48 private String _strAccessCode;
49 private String _strIpAddress;
50 private java.sql.Timestamp _dateLogin;
51 private int _nLoginStatus;
52
53 /**
54 * Returns the access code of this user log.
55 *
56 * @return the user access code
57 */
58 public String getAccessCode( )
59 {
60 return _strAccessCode;
61 }
62
63 /**
64 * Sets the access code of the user log to the specified string.
65 *
66 * @param strAccessCode
67 * the new access code
68 */
69 public void setAccessCode( String strAccessCode )
70 {
71 int nPasswordMaxLenght = Integer.parseInt( AppPropertiesService.getProperty( PROPERTY_PASSWORD_LENGHT_MAX ) );
72 String strModifyAccessCode = strAccessCode;
73
74 if ( strModifyAccessCode.length( ) > nPasswordMaxLenght )
75 {
76 strModifyAccessCode = strModifyAccessCode.substring( 0, nPasswordMaxLenght );
77 }
78
79 _strAccessCode = strModifyAccessCode;
80 }
81
82 /**
83 * Returns the ip address of this user log.
84 *
85 * @return the user ip address
86 */
87 public String getIpAddress( )
88 {
89 return _strIpAddress;
90 }
91
92 /**
93 * Sets the ip address of the user log to the specified string.
94 *
95 * @param strIpAddress
96 * the new ip address
97 */
98 public void setIpAddress( String strIpAddress )
99 {
100 _strIpAddress = strIpAddress;
101 }
102
103 /**
104 * Returns the login date of this user log.
105 *
106 * @return the user date of login
107 */
108 public java.sql.Timestamp getDateLogin( )
109 {
110 return _dateLogin;
111 }
112
113 /**
114 * Sets the login date of the user log to the specified timestamp.
115 *
116 * @param dateLogin
117 * the new date of login
118 */
119 public void setDateLogin( java.sql.Timestamp dateLogin )
120 {
121 _dateLogin = dateLogin;
122 }
123
124 /**
125 * Returns the login status of this user log.
126 *
127 * @return the user status of login
128 */
129 public int getLoginStatus( )
130 {
131 return _nLoginStatus;
132 }
133
134 /**
135 * Sets the login status of the user log to the specified integer.
136 *
137 * @param nLoginStatus
138 * the new status of login
139 */
140 public void setLoginStatus( int nLoginStatus )
141 {
142 _nLoginStatus = nLoginStatus;
143 }
144 }