Interface HybrisOpenIDTokenServices
-
- All Known Implementing Classes:
DefaultHybrisOpenIDTokenServices
public interface HybrisOpenIDTokenServicesInterface for handling with the HybrisOpenIDTokenServices.- Since:
- 4.0
- Spring Bean ID:
- oidcService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<OAuthClientDetailsModel>getAllOpenIDClientDetails()java.util.List<java.lang.String>getResponseTypes()java.util.List<java.lang.String>getSubjectTypes()java.util.List<java.lang.String>getSupportedScopes()java.util.List<java.lang.String>getTokenEndpointAuthMethods()
-
-
-
Method Detail
-
getTokenEndpointAuthMethods
java.util.List<java.lang.String> getTokenEndpointAuthMethods()
- Returns:
- List of supported token endpoint authentication methods
-
getSubjectTypes
java.util.List<java.lang.String> getSubjectTypes()
- Returns:
- List of supported Subject types
-
getResponseTypes
java.util.List<java.lang.String> getResponseTypes()
- Returns:
- List of supported response types
-
getSupportedScopes
java.util.List<java.lang.String> getSupportedScopes()
- Returns:
- List of supported scopes
-
getAllOpenIDClientDetails
java.util.List<OAuthClientDetailsModel> getAllOpenIDClientDetails()
- Returns:
- All known OpenIDClientDetails items
-
-