Package org.eclipse.jetty.security
Class UserStore
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.security.UserStore
-
- All Implemented Interfaces:
LifeCycle
- Direct Known Subclasses:
PropertyUserStore
@Deprecated(since="2021-05-27") public class UserStore extends AbstractLifeCycle
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Base class to store User
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description UserStore()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addUser(String username, Credential credential, String[] roles)
Deprecated.IdentityService
getIdentityService()
Deprecated.Map<String,UserIdentity>
getKnownUserIdentities()
Deprecated.UserIdentity
getUserIdentity(String userName)
Deprecated.void
removeUser(String username)
Deprecated.-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stop, toString
-
-
-
-
Method Detail
-
addUser
public void addUser(String username, Credential credential, String[] roles)
Deprecated.
-
removeUser
public void removeUser(String username)
Deprecated.
-
getUserIdentity
public UserIdentity getUserIdentity(String userName)
Deprecated.
-
getIdentityService
public IdentityService getIdentityService()
Deprecated.
-
getKnownUserIdentities
public Map<String,UserIdentity> getKnownUserIdentities()
Deprecated.
-
-