public class PropertyUserStore extends AbstractLifeCycle implements PathWatcher.Listener
This class monitors a property file of the format mentioned below and notifies registered listeners of the changes to the the given file.
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:.
| Modifier and Type | Class and Description |
|---|---|
static interface |
PropertyUserStore.UserListener
UserListener
|
AbstractLifeCycle.AbstractLifeCycleListenerLifeCycle.ListenerFAILED, RUNNING, STARTED, STARTING, STOP_ON_FAILURE, STOPPED, STOPPING| Constructor and Description |
|---|
PropertyUserStore() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
doStart()
Depending on the value of the refresh interval, this method will either start up a scanner thread that will monitor the properties file for changes after
it has initially loaded it.
|
protected void |
doStop() |
String |
getConfig()
Deprecated.
use
getConfigPath() instead |
Path |
getConfigPath()
Get the Config
Path reference. |
Resource |
getConfigResource() |
int |
getRefreshInterval()
Deprecated.
use
isHotReload() instead |
UserIdentity |
getUserIdentity(String userName) |
boolean |
isHotReload()
Is hot reload enabled on this user store
|
void |
onPathWatchEvent(PathWatcher.PathWatchEvent event) |
void |
registerUserListener(PropertyUserStore.UserListener listener)
registers a listener to be notified of the contents of the property file
|
void |
setConfig(String config)
Set the Config Path from a String reference to a file
|
void |
setConfigPath(File configFile)
Set the Config Path from a
File reference |
void |
setConfigPath(Path configPath)
Set the Config Path
|
void |
setConfigPath(String configFile)
Set the Config Path from a String reference to a file
|
void |
setHotReload(boolean enable)
Enable Hot Reload of the Property File
|
void |
setRefreshInterval(int sec)
Deprecated.
use
setHotReload(boolean) instead |
String |
toString() |
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stop@Deprecated public String getConfig()
getConfigPath() insteadpublic void setConfig(String config)
config - the config filepublic void setConfigPath(String configFile)
configFile - the config filepublic void setConfigPath(File configFile)
File referenceconfigFile - the config filepublic void setConfigPath(Path configPath)
configPath - the config pathpublic UserIdentity getUserIdentity(String userName)
public Resource getConfigResource() throws IOException
IOException - if unable to get the resourcepublic boolean isHotReload()
public void setHotReload(boolean enable)
enable - true to enable, false to disable@Deprecated public void setRefreshInterval(int sec)
setHotReload(boolean) insteadsec - the refresh interval@Deprecated public int getRefreshInterval()
isHotReload() insteadprotected void doStart()
throws Exception
doStart in class AbstractLifeCycleExceptionAbstractLifeCycle.doStart()public void onPathWatchEvent(PathWatcher.PathWatchEvent event)
onPathWatchEvent in interface PathWatcher.Listenerprotected void doStop()
throws Exception
doStop in class AbstractLifeCycleExceptionAbstractLifeCycle.doStop()public void registerUserListener(PropertyUserStore.UserListener listener)
listener - the user listenerCopyright © 1995–2017 Webtide. All rights reserved.