Interface OpenIDExternalScopesStrategy
-
- All Known Implementing Classes:
DefaultExternalScopesStrategy
public interface OpenIDExternalScopesStrategyThe Interface OpenIDExternalScopesStrategy for extracting scopes for external system for a particular user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>getExternalScopes(OAuthClientDetailsModel clientDetailsModel, java.lang.String principal)Gets the external scopes for given clientDetailsModel and principal UID.
-
-
-
Method Detail
-
getExternalScopes
java.util.List<java.lang.String> getExternalScopes(OAuthClientDetailsModel clientDetailsModel, java.lang.String principal)
Gets the external scopes for given clientDetailsModel and principal UID.- Parameters:
clientDetailsModel- the client details modelprincipal- the principal - UID- Returns:
- the list of external scopes that the given principal has assigned directly and by groups that it belongs to
-
-