Search in sources :

Example 1 with ProviderConfigProperty

use of org.keycloak.provider.ProviderConfigProperty in project keycloak by keycloak.

the class AbstractClientPolicyConditionProviderFactory method addCommonConfigProperties.

protected static void addCommonConfigProperties(List<ProviderConfigProperty> configProperties) {
    ProviderConfigProperty property = new ProviderConfigProperty(IS_NEGATIVE_LOGIC, "Negative Logic", "If On, the result of condition's evaluation is reverted from true to false and vice versa.", ProviderConfigProperty.BOOLEAN_TYPE, false);
    configProperties.add(property);
}
Also used : ProviderConfigProperty(org.keycloak.provider.ProviderConfigProperty)

Example 2 with ProviderConfigProperty

use of org.keycloak.provider.ProviderConfigProperty in project keycloak by keycloak.

the class ConditionalOtpFormAuthenticatorFactory method getConfigProperties.

@Override
public List<ProviderConfigProperty> getConfigProperties() {
    ProviderConfigProperty forceOtpUserAttribute = new ProviderConfigProperty();
    forceOtpUserAttribute.setType(STRING_TYPE);
    forceOtpUserAttribute.setName(OTP_CONTROL_USER_ATTRIBUTE);
    forceOtpUserAttribute.setLabel("OTP control User Attribute");
    forceOtpUserAttribute.setHelpText("The name of the user attribute to explicitly control OTP auth. " + "If attribute value is 'force' then OTP is always required. " + "If value is 'skip' the OTP auth is skipped. Otherwise this check is ignored.");
    ProviderConfigProperty skipOtpRole = new ProviderConfigProperty();
    skipOtpRole.setType(ROLE_TYPE);
    skipOtpRole.setName(SKIP_OTP_ROLE);
    skipOtpRole.setLabel("Skip OTP for Role");
    skipOtpRole.setHelpText("OTP is always skipped if user has the given Role.");
    ProviderConfigProperty forceOtpRole = new ProviderConfigProperty();
    forceOtpRole.setType(ROLE_TYPE);
    forceOtpRole.setName(FORCE_OTP_ROLE);
    forceOtpRole.setLabel("Force OTP for Role");
    forceOtpRole.setHelpText("OTP is always required if user has the given Role.");
    ProviderConfigProperty skipOtpForHttpHeader = new ProviderConfigProperty();
    skipOtpForHttpHeader.setType(STRING_TYPE);
    skipOtpForHttpHeader.setName(SKIP_OTP_FOR_HTTP_HEADER);
    skipOtpForHttpHeader.setLabel("Skip OTP for Header");
    skipOtpForHttpHeader.setHelpText("OTP is skipped if a HTTP request header does matches the given pattern." + "Can be used to specify trusted networks via: X-Forwarded-Host: (1.2.3.4|1.2.3.5)." + "In this case requests from 1.2.3.4 and 1.2.3.5 come from a trusted source.");
    skipOtpForHttpHeader.setDefaultValue("");
    ProviderConfigProperty forceOtpForHttpHeader = new ProviderConfigProperty();
    forceOtpForHttpHeader.setType(STRING_TYPE);
    forceOtpForHttpHeader.setName(FORCE_OTP_FOR_HTTP_HEADER);
    forceOtpForHttpHeader.setLabel("Force OTP for Header");
    forceOtpForHttpHeader.setHelpText("OTP required if a HTTP request header matches the given pattern.");
    forceOtpForHttpHeader.setDefaultValue("");
    ProviderConfigProperty defaultOutcome = new ProviderConfigProperty();
    defaultOutcome.setType(LIST_TYPE);
    defaultOutcome.setName(DEFAULT_OTP_OUTCOME);
    defaultOutcome.setLabel("Fallback OTP handling");
    defaultOutcome.setOptions(asList(SKIP, FORCE));
    defaultOutcome.setHelpText("What to do in case of every check abstains. Defaults to force OTP authentication.");
    return asList(forceOtpUserAttribute, skipOtpRole, forceOtpRole, skipOtpForHttpHeader, forceOtpForHttpHeader, defaultOutcome);
}
Also used : ProviderConfigProperty(org.keycloak.provider.ProviderConfigProperty)

Example 3 with ProviderConfigProperty

use of org.keycloak.provider.ProviderConfigProperty in project keycloak by keycloak.

the class AddressMapper method createConfigProperty.

protected static ProviderConfigProperty createConfigProperty(String claimName) {
    ProviderConfigProperty property = new ProviderConfigProperty();
    property.setName(getModelPropertyName(claimName));
    property.setLabel("addressClaim." + claimName + ".label");
    property.setHelpText("addressClaim." + claimName + ".tooltip");
    property.setType(ProviderConfigProperty.STRING_TYPE);
    property.setDefaultValue(claimName);
    return property;
}
Also used : ProviderConfigProperty(org.keycloak.provider.ProviderConfigProperty)

Example 4 with ProviderConfigProperty

use of org.keycloak.provider.ProviderConfigProperty in project keycloak by keycloak.

the class OIDCAttributeMapperHelper method addIncludeInTokensConfig.

public static void addIncludeInTokensConfig(List<ProviderConfigProperty> configProperties, Class<? extends ProtocolMapper> protocolMapperClass) {
    if (OIDCIDTokenMapper.class.isAssignableFrom(protocolMapperClass)) {
        ProviderConfigProperty property = new ProviderConfigProperty();
        property.setName(INCLUDE_IN_ID_TOKEN);
        property.setLabel(INCLUDE_IN_ID_TOKEN_LABEL);
        property.setType(ProviderConfigProperty.BOOLEAN_TYPE);
        property.setDefaultValue("true");
        property.setHelpText(INCLUDE_IN_ID_TOKEN_HELP_TEXT);
        configProperties.add(property);
    }
    if (OIDCAccessTokenMapper.class.isAssignableFrom(protocolMapperClass)) {
        ProviderConfigProperty property = new ProviderConfigProperty();
        property.setName(INCLUDE_IN_ACCESS_TOKEN);
        property.setLabel(INCLUDE_IN_ACCESS_TOKEN_LABEL);
        property.setType(ProviderConfigProperty.BOOLEAN_TYPE);
        property.setDefaultValue("true");
        property.setHelpText(INCLUDE_IN_ACCESS_TOKEN_HELP_TEXT);
        configProperties.add(property);
    }
    if (UserInfoTokenMapper.class.isAssignableFrom(protocolMapperClass)) {
        ProviderConfigProperty property = new ProviderConfigProperty();
        property.setName(INCLUDE_IN_USERINFO);
        property.setLabel(INCLUDE_IN_USERINFO_LABEL);
        property.setType(ProviderConfigProperty.BOOLEAN_TYPE);
        property.setDefaultValue("true");
        property.setHelpText(INCLUDE_IN_USERINFO_HELP_TEXT);
        configProperties.add(property);
    }
    if (OIDCAccessTokenResponseMapper.class.isAssignableFrom(protocolMapperClass)) {
        ProviderConfigProperty property = new ProviderConfigProperty();
        property.setName(INCLUDE_IN_ACCESS_TOKEN_RESPONSE);
        property.setLabel(INCLUDE_IN_ACCESS_TOKEN_RESPONSE_LABEL);
        property.setType(ProviderConfigProperty.BOOLEAN_TYPE);
        property.setDefaultValue("false");
        property.setHelpText(INCLUDE_IN_ACCESS_TOKEN_RESPONSE_HELP_TEXT);
        configProperties.add(property);
    }
}
Also used : ProviderConfigProperty(org.keycloak.provider.ProviderConfigProperty)

Example 5 with ProviderConfigProperty

use of org.keycloak.provider.ProviderConfigProperty in project keycloak by keycloak.

the class OIDCAttributeMapperHelper method addJsonTypeConfig.

public static void addJsonTypeConfig(List<ProviderConfigProperty> configProperties) {
    ProviderConfigProperty property = new ProviderConfigProperty();
    property.setName(JSON_TYPE);
    property.setLabel(JSON_TYPE);
    List<String> types = new ArrayList<>(5);
    types.add("String");
    types.add("long");
    types.add("int");
    types.add("boolean");
    types.add("JSON");
    property.setType(ProviderConfigProperty.LIST_TYPE);
    property.setOptions(types);
    property.setHelpText(JSON_TYPE_TOOLTIP);
    configProperties.add(property);
}
Also used : ProviderConfigProperty(org.keycloak.provider.ProviderConfigProperty)

Aggregations

ProviderConfigProperty (org.keycloak.provider.ProviderConfigProperty)30 ArrayList (java.util.ArrayList)3 LinkedList (java.util.LinkedList)3 ComponentFactory (org.keycloak.component.ComponentFactory)3 ComponentTypeRepresentation (org.keycloak.representations.idm.ComponentTypeRepresentation)3 HashMap (java.util.HashMap)2 List (java.util.List)2 Map (java.util.Map)2 GET (javax.ws.rs.GET)2 Path (javax.ws.rs.Path)2 Produces (javax.ws.rs.Produces)2 NoCache (org.jboss.resteasy.annotations.cache.NoCache)2 MultivaluedHashMap (org.keycloak.common.util.MultivaluedHashMap)2 ConfigPropertyRepresentation (org.keycloak.representations.idm.ConfigPropertyRepresentation)2 IOException (java.io.IOException)1 LinkedHashMap (java.util.LinkedHashMap)1 NotFoundException (javax.ws.rs.NotFoundException)1 ConfigurableAuthenticatorFactory (org.keycloak.authentication.ConfigurableAuthenticatorFactory)1 SubComponentFactory (org.keycloak.component.SubComponentFactory)1 ConfiguredProvider (org.keycloak.provider.ConfiguredProvider)1