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 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(Subject subject, Principal userPrincipal, String[] roles)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SubjectgetSubject()Deprecated.PrincipalgetUserPrincipal()Deprecated.booleanisUserInRole(String role, UserIdentity.Scope scope)Deprecated.Check if the user is in a role.StringtoString()Deprecated.
-
-
-
Method Detail
-
getSubject
public Subject getSubject()
Deprecated.- Specified by:
getSubjectin interfaceUserIdentity- Returns:
- The user subject
-
getUserPrincipal
public Principal getUserPrincipal()
Deprecated.- Specified by:
getUserPrincipalin interfaceUserIdentity- Returns:
- The user principal
-
isUserInRole
public boolean isUserInRole(String role, UserIdentity.Scope scope)
Deprecated.Description copied from interface:UserIdentityCheck 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:
isUserInRolein interfaceUserIdentity- Parameters:
role- A role name.scope- the scope- Returns:
- True if the user can act in that role.
-
-