Package org.gcube.oidc.rest
Interface OpenIdConnectConfiguration
-
public interface OpenIdConnectConfigurationOpenID Connect configuration.- Author:
- Mauro Mugnaini
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description URLgetAuthorizationURL()Returns the authorization URL.URLgetAvatarURL()Returns the avatar URL.URLgetIssuerURL()Returns the issuer URL.URLgetLogoutURL()Returns the logout URL.StringgetPortalClientId()Returns the portal client id.StringgetPortalClientSecret()Returns the portal client secret.StringgetScope()Returns the scope.URLgetTokenURL()Returns the token URL.
-
-
-
Method Detail
-
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.
-
-