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

org.usergrid.management.cassandra.AccountCreationPropsImpl Maven / Gradle / Ivy

There is a newer version: 0.0.27.1
Show newest version
/*******************************************************************************
 * Copyright 2012 Apigee Corporation
 *
 * 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
 *
 *   http://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 org.usergrid.management.cassandra;

import static java.lang.Boolean.parseBoolean;
import static org.apache.commons.lang.StringUtils.isBlank;

import java.util.Enumeration;
import java.util.Properties;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.usergrid.management.AccountCreationProps;

public class AccountCreationPropsImpl implements AccountCreationProps {
    private static final Logger logger = LoggerFactory.getLogger(AccountCreationPropsImpl.class);

    protected Properties properties;

    public AccountCreationPropsImpl(Properties properties) {
        this.properties = properties;
    }

    public boolean newOrganizationsNeedSysAdminApproval() {
        return isProperty(PROPERTIES_SYSADMIN_APPROVES_ORGANIZATIONS);
    }

    public boolean newAdminUsersNeedSysAdminApproval() {
        return isProperty(PROPERTIES_SYSADMIN_APPROVES_ADMIN_USERS);
    }

    public boolean newAdminUsersRequireConfirmation() {
        return isProperty(PROPERTIES_ADMIN_USERS_REQUIRE_CONFIRMATION);
    }

    public boolean newOrganizationsRequireConfirmation() {
        return isProperty(PROPERTIES_ORGANIZATIONS_REQUIRE_CONFIRMATION);
    }

    public boolean notifySysAdminOfNewAdminUsers() {
        return isProperty(PROPERTIES_NOTIFY_SYSADMIN_OF_NEW_ADMIN_USERS);
    }

    public boolean notifySysAdminOfNewOrganizations() {
        return isProperty(PROPERTIES_NOTIFY_SYSADMIN_OF_NEW_ORGANIZATIONS);
    }

    public boolean notifyAdminOfActivation() {
        return isProperty(PROPERTIES_NOTIFY_ADMIN_OF_ACTIVATION);
    }

    public String getProperty(String name) {
        String propertyValue = properties.getProperty(name);
        if (isBlank(propertyValue)) {
            logger.warn("Missing value for " + name);
            propertyValue = null;
        }
        return propertyValue;
    }

    public String getProperty(String name, String defaultValue) {
        return properties.getProperty(name, defaultValue);
    }

    public boolean isProperty(String name) {
        return parseBoolean(getProperty(name));
    }

    public void setProperty(String name, String value) {
        properties.setProperty(name, value);
    }

    public Properties getMailProperties() {
        Properties p = new Properties();
        for (Enumeration e = properties.propertyNames(); e.hasMoreElements();) {
            String name = (String) e.nextElement();
            if (name.startsWith("mail.")) {
                p.setProperty(name, properties.getProperty(name));
            }
        }
        return p;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy