Package de.adrianlange.mcd.model
Interface OAuth2
-
- All Known Implementing Classes:
OAuth2Impl
public interface OAuth2Representation of a OAuth2 configuration.May contain placeholders, see
MozillaAutoconfMailserverServicefor more information.- Author:
- Adrian Lange
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthUrl()Returns the auth URL.StringgetIssuer()Returns the token issuer.StringgetScope()Returns the token scope.StringgetTokenUrl()Returns the token URL.
-
-
-
Method Detail
-
getIssuer
String getIssuer()
Returns the token issuer.May contain placeholders, see
MozillaAutoconfMailserverServicefor more information.- Returns:
- Name of the issuer or null if not set.
-
getScope
String getScope()
Returns the token scope.May contain placeholders, see
MozillaAutoconfMailserverServicefor more information.- Returns:
- Name of the scope or null if not set.
-
getAuthUrl
String getAuthUrl()
Returns the auth URL.May contain placeholders, see
MozillaAutoconfMailserverServicefor more information.- Returns:
- Auth URL or null if not set.
-
getTokenUrl
String getTokenUrl()
Returns the token URL.May contain placeholders, see
MozillaAutoconfMailserverServicefor more information.- Returns:
- Token URL or null if not set.
-
-