All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.keycloak.quarkus.runtime.configuration.mappers.FeaturePropertyMappers Maven / Gradle / Ivy

There is a newer version: 26.1.4
Show newest version
package org.keycloak.quarkus.runtime.configuration.mappers;

import org.keycloak.config.FeatureOptions;

import static org.keycloak.quarkus.runtime.configuration.mappers.PropertyMapper.fromOption;

final class FeaturePropertyMappers {

    private FeaturePropertyMappers() {
    }

    public static PropertyMapper[] getMappers() {
        return new PropertyMapper[] {
                fromOption(FeatureOptions.FEATURES)
                        .paramLabel("feature")
                        .build(),
                fromOption(FeatureOptions.FEATURES_DISABLED)
                        .paramLabel("feature")
                        .build()
        };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy