/forgerock/openam-v13/openam-http-client/src/main/java/org/forgerock/http/client/request/ |
H A D | package-info.java | 22 package org.forgerock.http.client.request
|
H A D | HttpClientRequestFactory.java | 16 package org.forgerock.http.client.request;
|
/forgerock/openam/openam-http-client/src/main/java/org/forgerock/http/client/request/ |
H A D | package-info.java | 22 package org.forgerock.http.client.request
|
H A D | HttpClientRequestFactory.java | 16 package org.forgerock.http.client.request;
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/cdm/ |
H A D | ClientDetectionInterface.java | 36 * client from which the request has originated. This interface detects the 37 * client type from the client request. 42 * Detects the client type based on the request object. 44 * @param request 50 public String getClientType(HttpServletRequest request) argument
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/ |
H A D | AuthorizeRequestValidator.java | 31 * Request validators validate that the specified OAuth2 request is valid be checking that the request contains all of 39 * Validates that the OAuth2 request contains the valid parameters for the OAuth2 authorize endpoint. 41 * @param request The OAuth2Request for the client requesting authorization. Must not be {@code null}. 42 * @throws InvalidClientException If either the request does not contain the client's id or the client fails to be 44 * @throws InvalidRequestException If the request is missing any required parameters or is otherwise malformed. 45 * @throws RedirectUriMismatchException If the redirect uri on the request does not match the redirect uri 50 * @throws BadRequestException If the request is malformed. 51 * @throws IllegalArgumentException If the request is missing any required parameters. 55 void validateRequest(OAuth2Request request) throw argument [all...] |
H A D | OAuth2RequestFactory.java | 22 * @param <T> The type of the underlying request. 23 * @param <R> The request type to be returned. 29 * Creates a new OAuth2Request for the underlying HTTP request. 31 * @param request The underlying request. 34 R create(T request); argument
|
H A D | ResourceOwnerSessionValidator.java | 36 * Checks if the request contains valid resource owner session. 38 * @param request The OAuth2 request. 41 * request can be allowed. 43 * @throws BadRequestException If the request is malformed. 50 ResourceOwner validate(OAuth2Request request) throws ResourceOwnerAuthenticationRequired, AccessDeniedException, argument
|
H A D | TokenInfoService.java | 36 * Returns a Json representation of the token's information that is on the OAuth2 request. 38 * @param request The OAuth2 request. 40 * @throws InvalidRequestException If the request is missing any required parameters or is otherwise malformed. 42 * @throws BadRequestException If the request is malformed. 46 JsonValue getTokenInfo(OAuth2Request request) throws InvalidTokenException, InvalidRequestException, argument
|
H A D | TokenIntrospectionService.java | 37 * The request must must contain authorization as the OAuth 2.0 client that the token was issued for, using either 39 * @param request The OAuth 2.0 request 42 JsonValue introspect(OAuth2Request request) throws InvalidClientException, InvalidRequestException, NotFoundException, ServerException, BadRequestException, InvalidGrantException; argument
|
/forgerock/openam-v13/openam-oauth2-common/openid-connect-core/src/main/java/org/forgerock/openidconnect/ |
H A D | ClaimsParameterValidator.java | 49 public void validateRequest(OAuth2Request request) throws InvalidClientException, InvalidRequestException, argument 53 final OAuth2ProviderSettings settings = providerSettingsFactory.get(request); 55 final String claims = request.getParameter(OAuth2Constants.Custom.CLAIMS); 84 //When the userinfo member is used, the request MUST also use a response_type value that 87 String responseType = request.getParameter(OAuth2Constants.Params.RESPONSE_TYPE); 89 throw new BadRequestException("Must request an access token when providing " +
|
H A D | UserInfoService.java | 33 * @param request The OAuth2 request. 37 JsonValue getUserInfo(OAuth2Request request) throws OAuth2Exception; argument
|
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/iplanet/services/cdc/ |
H A D | SPValidator.java | 35 * Interface class to validate Agents sending AuthN request 42 * @param request Federation Service Authentication Request. 47 FSAuthnRequest request, 46 validateAndGetRestriction( FSAuthnRequest request, String gotoURL ) argument
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/ |
H A D | AuthorizeRequestValidator.java | 24 * Request validators validate that the specified OAuth2 request is valid be checking that the request contains all of 32 * Validates that the OAuth2 request contains the valid parameters for the OAuth2 authorize endpoint. 34 * @param request The OAuth2Request for the client requesting authorization. Must not be {@code null}. 35 * @throws InvalidClientException If either the request does not contain the client's id or the client fails to be 37 * @throws InvalidRequestException If the request is missing any required parameters or is otherwise malformed. 38 * @throws RedirectUriMismatchException If the redirect uri on the request does not match the redirect uri 43 * @throws BadRequestException If the request is malformed. 44 * @throws IllegalArgumentException If the request is missing any required parameters. 47 * @throws DuplicateRequestParameterException If the request contain 49 validateRequest(OAuth2Request request) argument [all...] |
H A D | DuplicateRequestParameterValidator.java | 16 * Implementation of the AuthorizeRequestValidator for duplicate request parameter validation. 26 public void validateRequest(OAuth2Request request) throws InvalidClientException, InvalidRequestException, argument 30 Set<String> parameterNames = request.getParameterNames(); 32 if (request.getParameterCount(parameterName) > 1) { 33 throw new DuplicateRequestParameterException("Invalid Request, duplicate request parameter found : " + parameterName);
|
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/ |
H A D | ClaimsParameterValidator.java | 49 public void validateRequest(OAuth2Request request) throws InvalidClientException, InvalidRequestException, argument 53 final OAuth2ProviderSettings settings = providerSettingsFactory.get(request); 55 final String claims = request.getParameter(OAuth2Constants.Custom.CLAIMS); 84 //When the userinfo member is used, the request MUST also use a response_type value that 87 String responseType = request.getParameter(OAuth2Constants.Params.RESPONSE_TYPE); 89 throw new BadRequestException("Must request an access token when providing " +
|
/forgerock/openam/openam-shared/src/main/java/com/iplanet/sso/ |
H A D | SSOProviderPlugin.java | 29 * Determines whether this SSOProvider is applicable to the given servlet request. 31 * @param request the request to check. 32 * @return {@code true} if the request contains an SSOToken that can be handled by this provider. 34 boolean isApplicable(HttpServletRequest request); argument
|
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/cdm/ |
H A D | ClientDetectionInterface.java | 36 * client from which the request has originated. This interface detects the 37 * client type from the client request. 42 * Detects the client type based on the request object. 44 * @param request 50 public String getClientType(HttpServletRequest request) argument
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/errors/ |
H A D | ExceptionMappingHandler.java | 36 * @param request the request that failed with an error. 40 R handleError(Context context, String debug, Request request, E error); argument 46 * @param request the request that failed with an error. 50 R handleError(String debug, Request request, E error); argument 56 * @param request the request that failed with an error. 60 R handleError(Context context, Request request, E error); argument 65 * @param request th 69 handleError(Request request, E error) argument [all...] |
H A D | IdentityServicesExceptionMappingHandler.java | 30 public IdServicesException handleError(Context context, String debug, Request request, IdRepoException error) { argument 35 public IdServicesException handleError(String debug, Request request, IdRepoException error) { argument 40 public IdServicesException handleError(Context context, Request request, IdRepoException error) { argument 45 public IdServicesException handleError(Request request, IdRepoException error) { argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/soapbinding/ |
H A D | RequestHandler.java | 34 * by each web services in order to receive request from your web service 45 * Generates a response according to the request. 47 * @param request the incoming request message from web service client. 49 * @throws SOAPFaultException if it fails to process the request and wants 51 * @throws Exception if it fails to process the request and wants to send 54 public Message processRequest(Message request) argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/plugins/ |
H A D | DefaultIDPECPSessionMapper.java | 46 * @param request HttpServletRequest 51 public Object getSession(HttpServletRequest request, argument 57 session = SessionManager.getProvider().getSession(request);
|
H A D | IDPECPSessionMapper.java | 37 * session from HTTP servlet request on IDP with ECP profile. 46 * @param request HttpServletRequest 51 public Object getSession(HttpServletRequest request, argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/servlet/ |
H A D | IDPArtifactResolutionServiceSOAP.java | 40 * processes ArtififactResolve request using SOAP binding on IDP side. 47 public void doPost(HttpServletRequest request, HttpServletResponse response) argument 51 SAMLUtils.checkHTTPContentLength(request); 53 IDPArtifactResolution.doArtifactResolution(request, response);
|
H A D | IDPManageNameIDServiceSOAP.java | 47 * Manage NameID request using SOAP binding on IDP side. 54 public void doPost(HttpServletRequest request, HttpServletResponse response) argument 60 DoManageNameID.processSOAPRequest(request, response, paramsMap); 63 SAMLUtils.sendError(request, response, 69 SAMLUtils.sendError(request, response,
|