Home
last modified time | relevance | path

Searched refs:identity_service (Results 1 – 2 of 2) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/security/authentication/
DDeferredAuthentication.java73 IdentityService identity_service=login_service.getIdentityService(); in authenticate() local
75 if (identity_service!=null) in authenticate()
76 …_previousAssociation=identity_service.associate(((Authentication.User)authentication).getUserIdent… in authenticate()
98 IdentityService identity_service=login_service.getIdentityService(); in authenticate() local
101 if (authentication instanceof Authentication.User && identity_service!=null) in authenticate()
102 …_previousAssociation=identity_service.associate(((Authentication.User)authentication).getUserIdent… in authenticate()
121 … IdentityService identity_service = _authenticator.getLoginService().getIdentityService(); in login() local
123 if (identity_service != null) in login()
124 _previousAssociation=identity_service.associate(identity); in login()
/external/jetty/src/java/org/eclipse/jetty/security/
DSecurityHandler.java600 IdentityService identity_service=getIdentityService(); in logout() local
601 if (identity_service!=null) in logout()
605 identity_service.disassociate(previous); in logout()