Interface WarlockOauthService
-
- All Implemented Interfaces:
public interface WarlockOauthService- Since:
2022-11-18
trydofor
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classWarlockOauthService.OAuth
-
Method Summary
Modifier and Type Method Description abstract WarlockOauthService.OAuthauthorizeCode(@NotNull() String clientId, String scope, String redirectUri, String session)Need to check scope, redirectUri and session (3rd user's sessionId) abstract WarlockOauthService.OAuthaccessToken(@NotNull() String clientId, @NotNull() String clientSecret, String token)client_credentials if token is empty, otherwise authorization_code abstract WarlockOauthService.OAuthrevokeToken(@NotNull() String clientId, @NotNull() String token)-
-
Method Detail
-
authorizeCode
@NotNull() abstract WarlockOauthService.OAuth authorizeCode(@NotNull() String clientId, String scope, String redirectUri, String session)
Need to check scope, redirectUri and session (3rd user's sessionId)
-
accessToken
@NotNull() abstract WarlockOauthService.OAuth accessToken(@NotNull() String clientId, @NotNull() String clientSecret, String token)
client_credentials if token is empty, otherwise authorization_code
-
revokeToken
@NotNull() abstract WarlockOauthService.OAuth revokeToken(@NotNull() String clientId, @NotNull() String token)
-
-
-
-