Package org.eclipse.jetty.security
Class DefaultUserIdentity
- java.lang.Object
-
- org.eclipse.jetty.security.DefaultUserIdentity
-
- All Implemented Interfaces:
UserIdentity
@Deprecated(since="2021-05-27") public class DefaultUserIdentity extends java.lang.Object implements UserIdentity
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.The default implementation of UserIdentity.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.server.UserIdentity
UserIdentity.Scope, UserIdentity.UnauthenticatedUserIdentity
-
-
Field Summary
-
Fields inherited from interface org.eclipse.jetty.server.UserIdentity
UNAUTHENTICATED_IDENTITY
-
-
Constructor Summary
Constructors Constructor Description DefaultUserIdentity(javax.security.auth.Subject subject, java.security.Principal userPrincipal, java.lang.String[] roles)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description javax.security.auth.Subject
getSubject()
Deprecated.java.security.Principal
getUserPrincipal()
Deprecated.boolean
isUserInRole(java.lang.String role, UserIdentity.Scope scope)
Deprecated.Check if the user is in a role.java.lang.String
toString()
Deprecated.
-
-
-
Method Detail
-
getSubject
public javax.security.auth.Subject getSubject()
Deprecated.- Specified by:
getSubject
in interfaceUserIdentity
- Returns:
- The user subject
-
getUserPrincipal
public java.security.Principal getUserPrincipal()
Deprecated.- Specified by:
getUserPrincipal
in interfaceUserIdentity
- Returns:
- The user principal
-
isUserInRole
public boolean isUserInRole(java.lang.String role, UserIdentity.Scope scope)
Deprecated.Description copied from interface:UserIdentity
Check if the user is in a role. This call is used to satisfy authorization calls from container code which will be using translated role names.- Specified by:
isUserInRole
in interfaceUserIdentity
- Parameters:
role
- A role name.scope
- the scope- Returns:
- True if the user can act in that role.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-