public class HashLoginService extends AbstractLoginService
An implementation of UserRealm that stores users and roles in-memory in HashMaps.
Typically these maps are populated by calling the load() method or passing a properties resource to the constructor. The format of the properties file is:
username: password [,rolename ...]Passwords may be clear text, obfuscated or checksummed. The class com.eclipse.Util.Password should be used to generate obfuscated passwords or password checksums.
If DIGEST Authentication is used, the password must be in a recoverable format, either plain text or OBF:.
AbstractLoginService.RolePrincipal, AbstractLoginService.UserPrincipalAbstractLifeCycle.AbstractLifeCycleListenerLifeCycle.Listener| Modifier and Type | Field and Description |
|---|---|
protected String |
_config |
protected Resource |
_configResource |
protected PropertyUserStore |
_propertyUserStore |
protected boolean |
hotReload |
_fullValidate, _identityService, _name| Constructor and Description |
|---|
HashLoginService() |
HashLoginService(String name) |
HashLoginService(String name,
String config) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
doStart() |
protected void |
doStop() |
String |
getConfig() |
void |
getConfig(String config) |
Resource |
getConfigResource() |
boolean |
isHotReload()
Is hot reload enabled on this user store
|
protected String[] |
loadRoleInfo(AbstractLoginService.UserPrincipal user) |
protected AbstractLoginService.UserPrincipal |
loadUserInfo(String userName) |
void |
setConfig(String config)
Load realm users from properties file.
|
void |
setHotReload(boolean enable)
Enable Hot Reload of the Property File
|
getIdentityService, getName, isFullValidate, login, logout, setFullValidate, setIdentityService, setName, toString, validateaddLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stopprotected PropertyUserStore _propertyUserStore
protected String _config
protected Resource _configResource
protected boolean hotReload
public HashLoginService()
public HashLoginService(String name)
public String getConfig()
public void getConfig(String config)
public Resource getConfigResource()
public void setConfig(String config)
config - Filename or url of user properties file.public boolean isHotReload()
public void setHotReload(boolean enable)
enable - true to enable, false to disableprotected String[] loadRoleInfo(AbstractLoginService.UserPrincipal user)
loadRoleInfo in class AbstractLoginServiceprotected AbstractLoginService.UserPrincipal loadUserInfo(String userName)
loadUserInfo in class AbstractLoginServiceprotected void doStart()
throws Exception
doStart in class AbstractLifeCycleExceptionAbstractLifeCycle.doStart()protected void doStop()
throws Exception
doStop in class AbstractLifeCycleExceptionAbstractLifeCycle.doStop()Copyright © 1995–2017 Webtide. All rights reserved.