01: package com.jat.business.authentication;
02:
03: import com.jat.business.JatUser;
04:
05: /**
06: * <p>Title: JAT</p>
07: * <p>Description: </p>
08: * <p>Copyright: Copyright (c) 2004 -2005 Stefano Fratini (stefano.fratini@gmail.com)</p>
09: * <p>Distributed under the terms of the GNU Lesser General Public License, v2.1 or later</p>
10: * @author stf
11: * @version 1.2
12: * @since 1.2
13: */
14:
15: public class DefaultUser extends JatUser {
16:
17: public DefaultUser(String dataSourceName, String username,
18: String password) throws AuthenticationException {
19: super(dataSourceName);
20: this.setUsername(username);
21: this.setPassword(password);
22: }
23: }
|