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

org.h2.security.auth.H2AuthConfig Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta2
Show newest version
/*
 * Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
 * and the EPL 1.0 (https://h2database.com/html/license.html).
 * Initial Developer: Alessandro Ventura
 */
package org.h2.security.auth;

import java.util.ArrayList;
import java.util.List;

/**
 * Describe configuration of H2 DefaultAuthenticator.
 */
public class H2AuthConfig {

    private boolean allowUserRegistration=true;
    private boolean createMissingRoles=true;
    private List realms;
    private List userToRolesMappers;

    /**
     * Allow user registration flag. If set to {@code true}
     * creates external users in the database if not present.
     *
     * @return {@code true} in case user registration is allowed,
     *          otherwise returns {@code false}.
     */
    public boolean isAllowUserRegistration() {
        return allowUserRegistration;
    }

    /**
     * @param allowUserRegistration Allow user registration flag.
     */
    public void setAllowUserRegistration(boolean allowUserRegistration) {
        this.allowUserRegistration = allowUserRegistration;
    }

    /**
     * When set create roles not found in the database. If not set roles not
     * found in the database are silently skipped.
     * @return {@code true} if the flag is set, otherwise returns {@code false}.
     */
    public boolean isCreateMissingRoles() {
        return createMissingRoles;
    }

    /**
     * When set create roles not found in the database. If not set roles not
     * found in the database are silently skipped
     * @param createMissingRoles missing roles flag.
     */
    public void setCreateMissingRoles(boolean createMissingRoles) {
        this.createMissingRoles = createMissingRoles;
    }

    /**
     * Gets configuration of authentication realms.
     *
     * @return configuration of authentication realms.
     */
    public List getRealms() {
        if (realms == null) {
            realms = new ArrayList<>();
        }
        return realms;
    }

    /**
     * Sets configuration of authentication realms.
     *
     * @param realms configuration of authentication realms.
     */
    public void setRealms(List realms) {
        this.realms = realms;
    }

    /**
     * Gets configuration of the mappers external users to database roles.
     *
     * @return configuration of the mappers external users to database roles.
     */
    public List getUserToRolesMappers() {
        if (userToRolesMappers == null) {
            userToRolesMappers = new ArrayList<>();
        }
        return userToRolesMappers;
    }

    /**
     * Sets configuration of the mappers external users to database roles.
     *
     * @param userToRolesMappers configuration of the mappers external users to database roles.
     */
    public void setUserToRolesMappers(List userToRolesMappers) {
        this.userToRolesMappers = userToRolesMappers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy