Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-security')
-rw-r--r--jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java b/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java
index f0a7de92ef..58db6e4727 100644
--- a/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java
+++ b/jetty-security/src/main/java/org/eclipse/jetty/security/JDBCLoginService.java
@@ -61,19 +61,19 @@ public class JDBCLoginService extends MappedLoginService
{
private static final Logger LOG = Log.getLogger(JDBCLoginService.class);
- private String _config;
- private String _jdbcDriver;
- private String _url;
- private String _userName;
- private String _password;
- private String _userTableKey;
- private String _userTablePasswordField;
- private String _roleTableRoleField;
- private int _cacheTime;
- private long _lastHashPurge;
- private Connection _con;
- private String _userSql;
- private String _roleSql;
+ protected String _config;
+ protected String _jdbcDriver;
+ protected String _url;
+ protected String _userName;
+ protected String _password;
+ protected String _userTableKey;
+ protected String _userTablePasswordField;
+ protected String _roleTableRoleField;
+ protected int _cacheTime;
+ protected long _lastHashPurge;
+ protected Connection _con;
+ protected String _userSql;
+ protected String _roleSql;
/* ------------------------------------------------------------ */

Back to the top