aboutsummaryrefslogtreecommitdiffstats
path: root/upstream/odl-aaa-moon/aaa/aaa-authn-api/src/main/java/org/opendaylight/aaa/api/IDMStoreUtil.java
blob: 07dd522fdfafb8bd111c52abbc1f2d589f1df92d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * Copyright (c) 2015 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;

import javax.naming.OperationNotSupportedException;

/*
 *  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 (saichler@cisco.com)
 */

public class IDMStoreUtil {
    private IDMStoreUtil() throws OperationNotSupportedException {
        throw new OperationNotSupportedException();
    }

    public static String createDomainid(String domainName) {
        return domainName;
    }

    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;
    }
}