397051 Make JDBCLoginService data members protected to facilitate subclassing

This commit is contained in:
Jan Bartel 2013-05-20 18:27:24 +10:00
parent 8ceb61992b
commit 6cfd33a71b
1 changed files with 13 additions and 13 deletions

View File

@ -61,19 +61,19 @@ public class JDBCLoginService extends MappedLoginService
{ {
private static final Logger LOG = Log.getLogger(JDBCLoginService.class); private static final Logger LOG = Log.getLogger(JDBCLoginService.class);
private String _config; protected String _config;
private String _jdbcDriver; protected String _jdbcDriver;
private String _url; protected String _url;
private String _userName; protected String _userName;
private String _password; protected String _password;
private String _userTableKey; protected String _userTableKey;
private String _userTablePasswordField; protected String _userTablePasswordField;
private String _roleTableRoleField; protected String _roleTableRoleField;
private int _cacheTime; protected int _cacheTime;
private long _lastHashPurge; protected long _lastHashPurge;
private Connection _con; protected Connection _con;
private String _userSql; protected String _userSql;
private String _roleSql; protected String _roleSql;
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */