Interface SecurityServiceConfig
- All Known Implementing Classes:
CustomSecurityServiceConfig
public interface SecurityServiceConfig
Common Security configuration
-
Method Summary
Modifier and TypeMethodDescriptionReturns the client ID used for authentication with the Discovery Service.The password for accessing the serviceReturns the secret used for authentication with the Discovery Service.Returns the URL for the OpenID Connect token endpoint (e.g., http://address/.well-known/openid-configuration).The username for accessing the service
-
Method Details
-
getClientId
String getClientId()Returns the client ID used for authentication with the Discovery Service.- Returns:
- The client ID as a
String.
-
getSecret
String getSecret()Returns the secret used for authentication with the Discovery Service.- Returns:
- The secret as a
String.
-
getTokenEndpoint
String getTokenEndpoint()Returns the URL for the OpenID Connect token endpoint (e.g., http://address/.well-known/openid-configuration).- Returns:
- The OpenID Connect token endpoint as a
String.
-
getUsername
String getUsername()The username for accessing the service- Returns:
- the user name
-
getPassword
String getPassword()The password for accessing the service- Returns:
- the password as a string
-