<div dir="ltr">In my AuthenticatorFactory class, I have the following configuration added:<div><br></div><div><div> ProviderConfigProperty property;</div><div>        property= new ProviderConfigProperty();</div><div>        property.setName(&quot;propname&quot;);</div><div>        property.setLabel(&quot;Property Name&quot;);</div><div>        property.setDefaultValue(true);</div><div>        property.setType(ProviderConfigProperty.BOOLEAN_TYPE);</div><div>        configProperties.add(identityFirstproperty);</div></div><div><br></div><div>I wanted to keep a default value as true and at first it seemed like the following line would do it:</div><div><br></div><div> property.setDefaultValue(true);<br></div><div><br></div><div>But that does not seem to work. The default is still false. How can I set the default to true?</div></div>