Tabnine Logo
ProviderConfigurationBuilder$ProviderConfigPropertyBuilder
Code IndexAdd Tabnine to your IDE (free)

How to use
ProviderConfigurationBuilder$ProviderConfigPropertyBuilder
in
org.keycloak.provider

Best Java code snippets using org.keycloak.provider.ProviderConfigurationBuilder$ProviderConfigPropertyBuilder (Showing top 2 results out of 315)

origin: org.keycloak/keycloak-server-spi

public ProviderConfigPropertyBuilder property() {
  return new ProviderConfigPropertyBuilder();
}
origin: org.keycloak/keycloak-kerberos-federation

private static List<ProviderConfigProperty> getConfigProps() {
  return ProviderConfigurationBuilder.create()
      .property().name(KerberosConstants.KERBEROS_REALM)
      .label("kerberos-realm")
      .helpText("kerberos-realm.tooltip")
      .type(ProviderConfigProperty.STRING_TYPE)
      .add()
      .property().name(KerberosConstants.SERVER_PRINCIPAL)
      .label("server-principal")
      .helpText("server-principal.tooltip")
      .type(ProviderConfigProperty.STRING_TYPE)
      .add()
      .property().name(KerberosConstants.KEYTAB)
      .label("keytab")
      .helpText("keytab.tooltip")
      .type(ProviderConfigProperty.STRING_TYPE)
      .add()
      .property().name(KerberosConstants.DEBUG)
      .label("debug")
      .helpText("debug.tooltip")
      .type(ProviderConfigProperty.BOOLEAN_TYPE)
      .defaultValue("false")
      .add()
      .property().name(KerberosConstants.ALLOW_PASSWORD_AUTHENTICATION)
      .label("allow-password-authentication")
      .helpText("allow-password-authentication.tooltip")
      .type(ProviderConfigProperty.BOOLEAN_TYPE)
      .defaultValue("false")
      .add()
      .property().name(LDAPConstants.EDIT_MODE)
org.keycloak.providerProviderConfigurationBuilder$ProviderConfigPropertyBuilder

Most used methods

  • <init>
  • add
    Add the current property, and start building the next one
  • defaultValue
    Default value that will be shown when configuring this property for the first time
  • helpText
    Help text that will be shown for this configuration property in the admin console when you hover ove
  • label
    Label that will be shown for this configuration property in the admin console
  • name
  • options
    If configuring a list type, these are the options you can choose from.
  • type
    Property type. i.e. boolean, string.

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • addToBackStack (FragmentTransaction)
  • notifyDataSetChanged (ArrayAdapter)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • JPanel (javax.swing)
  • JTable (javax.swing)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now