Searched defs:authId (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAuthIdHelper.java168 * @param authId The Auth Id jwt string
171 public SignedJwt reconstructAuthId(String authId) throws RestAuthException { argument
173 return jwtBuilderFactory.reconstruct(authId, SignedJwt.class);
184 * @param authId The authentication id JWT.
186 public void verifyAuthId(String realmDN, String authId) throws RestAuthException { argument
192 boolean verified = jwtBuilderFactory.reconstruct(authId, SignedJwt.class).verify(signingHandler);
H A DAuthenticationAccessAuditFilter.java112 String authId = AuditRequestContext.getProperty(AUTH_ID);
119 } else if (isNotEmpty(authId)) {
120 populateContextFromAuthId(authId);
144 private void populateContextFromAuthId(String authId) { argument
146 String sessionId = authIdHelper.reconstructAuthId(authId).getClaimsSet().getClaim(SESSION_ID, String.class);
H A DRestAuthenticationHandler.java139 String authId = null;
143 authId = getAuthId(postBody);
145 if (authId != null) {
146 SignedJwt jwt = authIdHelper.reconstructAuthId(authId);
152 authIdHelper.verifyAuthId(realmDN, authId);
167 return processAuthentication(request, response, postBody, authId, loginProcess, loginConfiguration);
212 return postBody.get("authId").asString();
231 HttpServletResponse response, JsonValue postBody, String authId,
248 // Include the authId in the JSON response.
249 if (authId
230 processAuthentication(HttpServletRequest request, HttpServletResponse response, JsonValue postBody, String authId, LoginProcess loginProcess, LoginConfiguration loginConfiguration) argument
325 createJsonCallbackResponse(String authId, LoginConfiguration loginConfiguration, LoginProcess loginProcess, JsonValue jsonCallbacks) argument
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/
H A DAuthIdHelper.java168 * @param authId The Auth Id jwt string
171 public SignedJwt reconstructAuthId(String authId) throws RestAuthException { argument
173 return jwtBuilderFactory.reconstruct(authId, SignedJwt.class);
184 * @param authId The authentication id JWT.
186 public void verifyAuthId(String realmDN, String authId) throws RestAuthException { argument
192 boolean verified = jwtBuilderFactory.reconstruct(authId, SignedJwt.class).verify(signingHandler);
H A DAuthenticationAccessAuditFilter.java112 String authId = AuditRequestContext.getProperty(AUTH_ID);
119 } else if (isNotEmpty(authId)) {
120 populateContextFromAuthId(authId);
144 private void populateContextFromAuthId(String authId) { argument
146 String sessionId = authIdHelper.reconstructAuthId(authId).getClaimsSet().getClaim(SESSION_ID, String.class);
H A DRestAuthenticationHandler.java145 String authId = null;
149 authId = getAuthId(postBody);
151 if (authId != null) {
152 SignedJwt jwt = authIdHelper.reconstructAuthId(authId);
158 authIdHelper.verifyAuthId(realmDN, authId);
173 return processAuthentication(request, response, postBody, authId, loginProcess, loginConfiguration);
218 return postBody.get("authId").asString();
237 HttpServletResponse response, JsonValue postBody, String authId,
254 // Include the authId in the JSON response.
255 if (authId
236 processAuthentication(HttpServletRequest request, HttpServletResponse response, JsonValue postBody, String authId, LoginProcess loginProcess, LoginConfiguration loginConfiguration) argument
332 createJsonCallbackResponse(String authId, LoginConfiguration loginConfiguration, LoginProcess loginProcess, JsonValue jsonCallbacks) argument
[all...]

Completed in 32 milliseconds