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

org.opendaylight.aaa.api.IDMStoreUtil Maven / Gradle / Ivy

There is a newer version: 0.20.3
Show newest version
/*
 * Copyright (c) 2015, 2017 Cisco Systems, Inc. and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.aaa.api;

/**
 *  This class is a utility to construct the different elements keys for the different data stores.
 *  For not making mistakes around the code constructing an element key, this class standardize the
 *  way the key is constructed to be used by the different data stores.
 *
 *  @author - Sharon Aicler ([email protected])
 */
public final class IDMStoreUtil {
    private IDMStoreUtil() {
        // Hidden on purpose
    }

    public static String createUserid(String username, String domainid) {
        return username + "@" + domainid;
    }

    public static String createRoleid(String rolename, String domainid) {
        return rolename + "@" + domainid;
    }

    public static String createGrantid(String userid, String domainid, String roleid) {
        return userid + "@" + roleid + "@" + domainid;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy