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

org.wso2.carbon.roles.mgt.ServerRoleUtils Maven / Gradle / Ivy

package org.wso2.carbon.roles.mgt;

import org.wso2.carbon.base.ServerConfiguration;

import java.util.*;

public final class ServerRoleUtils {

    private ServerRoleUtils() {
    }

    /**
     * First checks for the "serverRoles" system property. If null, reads the ServerRoles property
     * from carbon.xml.
     *
     * @return server roles List, null if there are no roles defined/
     */
    public static List readProductServerRoles() {
        String[] serverRoles;
        // read the system property
        String temp = System.getProperty(ServerRoleConstants.SERVER_ROLES_CMD_OPTION);
        if (temp != null) {
            serverRoles = temp.split(",");
        } else {
            // now try to read from carbon.xml
            ServerConfiguration serverConfig = ServerConfiguration.getInstance();
            serverRoles = serverConfig.getProperties(ServerRoleConstants.CARBON_SERVER_ROLE);
        }
        return ServerRoleUtils.arrayToList(serverRoles);
    }

    public static String[] listToArray(List list) {
        if ((list != null && !list.isEmpty())) {
            String[] array = new String[list.size()];
            for (int i = 0; i < list.size(); i++) {
                array[i] = list.get(i);
            }
            return array;
        } else {
            return null;
        }
    }

    public static List arrayToList(String[] array) {
        if ((array != null) && (array.length != 0)) {
            return Arrays.asList(array);
        } else {
            return null;
        }
    }

    /*public static List removeDuplicates(List targetList, List itemsList) {
        List returnList = null;

        if (targetList != null && !targetList.isEmpty()) {
            if ((itemsList != null) && (!itemsList.isEmpty())) {

                Set targetSet = new HashSet(targetList);
                targetSet.removeAll(itemsList);
                returnList = new ArrayList(targetSet);
            } else {
                returnList = targetList;
            }
        }
        return returnList;
    }*/

    public static List mergeLists(List targetList, List itemsList) {
        List returnList = null;

        if (itemsList != null && !itemsList.isEmpty()) {
            if (targetList != null && !targetList.isEmpty()) {
                Set targetSet = new HashSet(targetList);
                targetSet.addAll(itemsList);
                returnList = new ArrayList(targetSet);
            } else {
                returnList = itemsList;
            }
        } else if (targetList != null && !targetList.isEmpty()) {
            returnList = targetList;
        }
        return returnList;
    }

    public static String getRegistryPath(String serverRoleType) {
        if (ServerRoleConstants.DEFAULT_ROLES_ID.equals(serverRoleType)) {
            return ServerRoleConstants.DEFAULT_ROLES_PATH;
        } else if (ServerRoleConstants.CUSTOM_ROLES_ID.equals(serverRoleType)) {
            return ServerRoleConstants.CUSTOM_ROLES_PATH;
        } else {
            return null;
        }
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy