Class OAuthSettingService

java.lang.Object
io.meeds.oauth2.server.service.OAuthSettingService

@Service public class OAuthSettingService extends Object
  • Constructor Details

    • OAuthSettingService

      public OAuthSettingService()
  • Method Details

    • getIssuerUrl

      public String getIssuerUrl()
    • getScopes

      public Set<String> getScopes()
    • getAllowedAudiences

      public Set<String> getAllowedAudiences()
    • getAllowedRedirectUris

      public List<String> getAllowedRedirectUris()
    • getAllowedCimdUris

      public List<String> getAllowedCimdUris()
    • getAllowedOrigins

      public List<String> getAllowedOrigins()
    • isAllowAllRedirectUris

      public boolean isAllowAllRedirectUris()
    • isAllowAllCimdUris

      public boolean isAllowAllCimdUris()
    • isAllowAllOrigins

      public boolean isAllowAllOrigins()
    • setAllowAllRedirectUris

      public void setAllowAllRedirectUris(boolean allowAll)
    • setAllowAllCimdUris

      public void setAllowAllCimdUris(boolean allowAll)
    • setAllowAllOrigins

      public void setAllowAllOrigins(boolean allowAll)
    • addAllowedRedirectUri

      public void addAllowedRedirectUri(String redirectUriPrefix)
    • addAllowedCimdUri

      public void addAllowedCimdUri(String cimdUriPrefix)
    • addAllowedOrigin

      public void addAllowedOrigin(String origin)
    • removeAllowedRedirectUri

      public void removeAllowedRedirectUri(String redirectUri)
    • removeAllowedCimdUri

      public void removeAllowedCimdUri(String cimdUri)
    • removeAllowedOrigin

      public void removeAllowedOrigin(String origin)
    • getPublicClientSettings

      public org.springframework.security.oauth2.server.authorization.settings.ClientSettings getPublicClientSettings()
    • getPublicClientTokenSettings

      public org.springframework.security.oauth2.server.authorization.settings.TokenSettings getPublicClientTokenSettings()
    • isAllowedRedirectUri

      public boolean isAllowedRedirectUri(String uri)
    • isAllowedCimdUrl

      public boolean isAllowedCimdUrl(String uri)