Package org.eclipse.jetty.security
Class SpnegoUserIdentity
- java.lang.Object
-
- org.eclipse.jetty.security.SpnegoUserIdentity
-
- All Implemented Interfaces:
UserIdentity
public class SpnegoUserIdentity extends java.lang.Object implements UserIdentity
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.server.UserIdentity
UserIdentity.Scope, UserIdentity.UnauthenticatedUserIdentity
-
-
Field Summary
Fields Modifier and Type Field Description private java.security.Principal
_principal
private UserIdentity
_roleDelegate
private javax.security.auth.Subject
_subject
-
Fields inherited from interface org.eclipse.jetty.server.UserIdentity
UNAUTHENTICATED_IDENTITY
-
-
Constructor Summary
Constructors Constructor Description SpnegoUserIdentity(javax.security.auth.Subject subject, java.security.Principal principal, UserIdentity roleDelegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.security.auth.Subject
getSubject()
java.security.Principal
getUserPrincipal()
boolean
isEstablished()
boolean
isUserInRole(java.lang.String role, UserIdentity.Scope scope)
Check if the user is in a role.
-
-
-
Field Detail
-
_subject
private final javax.security.auth.Subject _subject
-
_principal
private final java.security.Principal _principal
-
_roleDelegate
private final UserIdentity _roleDelegate
-
-
Constructor Detail
-
SpnegoUserIdentity
public SpnegoUserIdentity(javax.security.auth.Subject subject, java.security.Principal principal, UserIdentity roleDelegate)
-
-
Method Detail
-
getSubject
public javax.security.auth.Subject getSubject()
- Specified by:
getSubject
in interfaceUserIdentity
- Returns:
- The user subject
-
getUserPrincipal
public java.security.Principal getUserPrincipal()
- Specified by:
getUserPrincipal
in interfaceUserIdentity
- Returns:
- The user principal
-
isUserInRole
public boolean isUserInRole(java.lang.String role, UserIdentity.Scope scope)
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.
-
isEstablished
public boolean isEstablished()
-
-