1 /*
2 * Copyright (c) 2002-2014, Mairie de 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 /**
40 * This class represents business object UserLog
41 */
42 public class UserLog
43 {
44 /////////////////////////////////////////////////////////////////////////////////
45 // Constants
46 public static final int LOGIN_OK = 1;
47 public static final int LOGIN_DENIED = 0;
48 private static final String PROPERTY_PASSWORD_LENGHT_MAX = "password.lenght.max";
49 private String _strAccessCode;
50 private String _strIpAddress;
51 private java.sql.Timestamp _dateLogin;
52 private int _nLoginStatus;
53
54 /**
55 * Returns the access code of this user log.
56 *
57 * @return the user access code
58 */
59 public String getAccessCode( )
60 {
61 return _strAccessCode;
62 }
63
64 /**
65 * Sets the access code of the user log to the specified string.
66 *
67 * @param strAccessCode 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 the new ip address
96 */
97 public void setIpAddress( String strIpAddress )
98 {
99 _strIpAddress = strIpAddress;
100 }
101
102 /**
103 * Returns the login date of this user log.
104 *
105 * @return the user date of login
106 */
107 public java.sql.Timestamp getDateLogin( )
108 {
109 return _dateLogin;
110 }
111
112 /**
113 * Sets the login date of the user log to the specified timestamp.
114 *
115 * @param dateLogin the new date of login
116 */
117 public void setDateLogin( java.sql.Timestamp dateLogin )
118 {
119 _dateLogin = dateLogin;
120 }
121
122 /**
123 * Returns the login status of this user log.
124 *
125 * @return the user status of login
126 */
127 public int getLoginStatus( )
128 {
129 return _nLoginStatus;
130 }
131
132 /**
133 * Sets the login status of the user log to the specified integer.
134 *
135 * @param nLoginStatus the new status of login
136 */
137 public void setLoginStatus( int nLoginStatus )
138 {
139 _nLoginStatus = nLoginStatus;
140 }
141 }