Searched defs:authorize (Results 1 - 9 of 9) sorted by relevance

/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationService.java50 * The user-agent is then redirected back to the OAuth2 authorize endpoint.
54 * redirected back to OAuth2 authorize endpoint the #authorize(OAuth2Request, boolean, boolean) method on this class
58 * @return An AuthorizationToken containing the OAuth2 tokens granted as apart of the authorize call.
59 * @throws ResourceOwnerAuthenticationRequired If the resource owner needs to authenticate before the authorize
61 * @throws ResourceOwnerConsentRequired If the resource owner's consent is required before the authorize request
82 AuthorizationToken authorize(OAuth2Request request) throws ResourceOwnerAuthenticationRequired, method in interface:AuthorizationService
100 * @return An AuthorizationToken containing the OAuth2 tokens granted as apart of the authorize call.
103 * @throws ResourceOwnerAuthenticationRequired If the resource owner needs to authenticate before the authorize
121 AuthorizationToken authorize(OAuth2Reques method in interface:AuthorizationService
[all...]
H A DAuthorizationServiceImpl.java95 public AuthorizationToken authorize(OAuth2Request request) throws ResourceOwnerAuthenticationRequired, method in class:AuthorizationServiceImpl
193 public AuthorizationToken authorize(OAuth2Request request, boolean consentGiven, boolean saveConsent) method in class:AuthorizationServiceImpl
209 logger.debug("Resource Owner did not authorize the request");
210 throw new AccessDeniedException("Resource Owner did not authorize the request",
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/cts/
H A DCoreTokenResourceAuthzModule.java62 protected Promise<AuthorizationResult, ResourceException> authorize(Context context) { method in class:CoreTokenResourceAuthzModule
75 return super.authorize(context);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/cts/
H A DCoreTokenResourceAuthzModule.java64 protected Promise<AuthorizationResult, ResourceException> authorize(Context context) { method in class:CoreTokenResourceAuthzModule
77 return super.authorize(context);
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/
H A DAuthorizeResource.java42 * Handles requests to the OAuth2 authorize endpoint.
77 * Handles GET requests to the OAuth2 authorize endpoint.
86 public Representation authorize() throws OAuth2RestletException { method in class:AuthorizeResource
95 final AuthorizationToken authorizationToken = authorizationService.authorize(request);
119 return representation.getRepresentation(getContext(), request, "authorize.ftl",
135 * Handles POST requests to the OAuth2 authorize endpoint.
144 public Representation authorize(Representation entity) throws OAuth2RestletException { method in class:AuthorizeResource
156 final AuthorizationToken authorizationToken = authorizationService.authorize(request, consentGiven,
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DSSOTokenAuthzModule.java52 return authorize(context);
57 return authorize(context);
62 return authorize(context);
67 return authorize(context);
72 return authorize(context);
77 return authorize(context);
82 return authorize(context);
85 protected Promise<AuthorizationResult, ResourceException> authorize(Context context) { method in class:SSOTokenAuthzModule
91 debug.message("{} :: Unable to authorize user using SSO Token.", moduleName, e);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/restlet/
H A DAuthorizeResource.java47 * Handles requests to the OAuth2 authorize endpoint.
86 * Handles GET requests to the OAuth2 authorize endpoint.
95 public Representation authorize() throws OAuth2RestletException { method in class:AuthorizeResource
104 final AuthorizationToken authorizationToken = authorizationService.authorize(request);
128 return representation.getRepresentation(getContext(), request, "authorize.ftl",
150 * Handles POST requests to the OAuth2 authorize endpoint.
159 public Representation authorize(Representation entity) throws OAuth2RestletException { method in class:AuthorizeResource
171 final AuthorizationToken authorizationToken = authorizationService.authorize(request, consentGiven,
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/authz/
H A DSSOTokenAuthzModule.java52 return authorize(context);
57 return authorize(context);
62 return authorize(context);
67 return authorize(context);
72 return authorize(context);
77 return authorize(context);
82 return authorize(context);
85 protected Promise<AuthorizationResult, ResourceException> authorize(Context context) { method in class:SSOTokenAuthzModule
91 debug.message("{} :: Unable to authorize user using SSO Token.", moduleName, e);
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationService.java107 * The user-agent is then redirected back to the OAuth2 authorize endpoint.
111 * redirected back to OAuth2 authorize endpoint the #authorize(OAuth2Request, boolean, boolean) method on this class
115 * @return An AuthorizationToken containing the OAuth2 tokens granted as apart of the authorize call.
116 * @throws ResourceOwnerAuthenticationRequired If the resource owner needs to authenticate before the authorize
118 * @throws ResourceOwnerConsentRequired If the resource owner's consent is required before the authorize request
140 public AuthorizationToken authorize(OAuth2Request request) throws ResourceOwnerAuthenticationRequired, method in class:AuthorizationService
258 * @return An AuthorizationToken containing the OAuth2 tokens granted as apart of the authorize call.
261 * @throws ResourceOwnerAuthenticationRequired If the resource owner needs to authenticate before the authorize
281 public AuthorizationToken authorize(OAuth2Reques method in class:AuthorizationService
[all...]

Completed in 46 milliseconds