Package org.gcube.oidc.rest
Interface OpenIdConnectConfiguration
public interface OpenIdConnectConfiguration
OpenID Connect configuration.
- Author:
- Mauro Mugnaini
-
Method Summary
Modifier and TypeMethodDescriptionReturns the authorization URL.Returns the avatar URL.Returns the issuer URL.Returns the logout URL.Returns the portal client id.Returns the portal client secret.getScope()Returns the scope.Returns the token URL.
-
Method Details
-
getScope
String getScope()Returns the scope.- Returns:
- the scope.
-
getPortalClientId
String getPortalClientId()Returns the portal client id.- Returns:
- the portal client id.
-
getPortalClientSecret
String getPortalClientSecret()Returns the portal client secret.- Returns:
- the portal client secret.
-
getIssuerURL
URL getIssuerURL()Returns the issuer URL.- Returns:
- the issuer URL.
-
getLogoutURL
URL getLogoutURL()Returns the logout URL.- Returns:
- the logout URL.
-
getTokenURL
URL getTokenURL()Returns the token URL.- Returns:
- the token URL.
-
getAuthorizationURL
URL getAuthorizationURL()Returns the authorization URL.- Returns:
- the authorization URL.
-
getAvatarURL
URL getAvatarURL()Returns the avatar URL.- Returns:
- the avatar URL.
-