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

io.micronaut.security.ldap.context.ContextConfigurationContextSettings Maven / Gradle / Ivy

There is a newer version: 4.10.1
Show newest version
/*
 * Copyright 2017-2020 original authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.micronaut.security.ldap.context;

import io.micronaut.security.ldap.configuration.LdapConfiguration;
import java.util.Map;

/**
 * Implementation of {@link ContextSettings} that derives its values from
 * an instance of {@link LdapConfiguration}.
 *
 * @author James Kleeh
 * @since 1.0
 */
public class ContextConfigurationContextSettings implements ContextSettings {

    private final LdapConfiguration.ContextConfiguration contextConfiguration;
    private final String dn;
    private final String password;
    private final boolean pooled;

    /**
     * @param configuration The ldap configuration
     */
    public ContextConfigurationContextSettings(LdapConfiguration configuration) {
        this.contextConfiguration = configuration.getContext();
        this.dn = contextConfiguration.getManagerDn();
        this.password = contextConfiguration.getManagerPassword();
        this.pooled = true;
    }

    /**
     * @param configuration The ldap configuration
     * @param dn            The user DN to bind with
     * @param password      The password to bind with
     */
    public ContextConfigurationContextSettings(LdapConfiguration configuration,
                                               String dn, String password) {
        this.contextConfiguration = configuration.getContext();
        this.dn = dn;
        this.password = password;
        this.pooled = false;
    }

    @Override
    public boolean getPooled() {
        return pooled;
    }

    @Override
    public String getFactory() {
        return contextConfiguration.getFactory();
    }

    @Override
    public String getUrl() {
        return contextConfiguration.getServer();
    }

    @Override
    public String getDn() {
        return dn;
    }

    @Override
    public String getPassword() {
        return password;
    }

    @Override
    public Map getAdditionalProperties() {
        return contextConfiguration.getProperties();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy