Interface IdentityProvider

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean allowsUsersToSignUp()
      Can users sign-up (connecting with their account for the first time) ? If true, then users can register and create their account into SonarQube, else only already registered users can login.
      Display getDisplay()
      Display information for the login form
      java.lang.String getKey()
      Unique key of provider, for example "github".
      java.lang.String getName()
      Name displayed in login form.
      boolean isEnabled()
      Is the provider fully configured and enabled ? If true, then the provider is available in login form.
    • Method Detail

      • getKey

        java.lang.String getKey()
        Unique key of provider, for example "github". Must not be blank.
      • getName

        java.lang.String getName()
        Name displayed in login form. Must not be blank.
      • getDisplay

        Display getDisplay()
        Display information for the login form
      • isEnabled

        boolean isEnabled()
        Is the provider fully configured and enabled ? If true, then the provider is available in login form.
      • allowsUsersToSignUp

        boolean allowsUsersToSignUp()
        Can users sign-up (connecting with their account for the first time) ? If true, then users can register and create their account into SonarQube, else only already registered users can login.