aboutsummaryrefslogtreecommitdiffstats
path: root/upstream/odl-aaa-moon/aaa/aaa-authn-federation/src/main/java/org/opendaylight/aaa/federation/ServiceLocator.java
blob: dd861514603e45d4517d24d1e4535c4966e36fc6 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
 * Copyright (c) 2014, 2015 Hewlett-Packard Development Company, L.P. 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.federation;

import java.util.List;
import java.util.Vector;
import org.opendaylight.aaa.api.ClaimAuth;
import org.opendaylight.aaa.api.IdMService;
import org.opendaylight.aaa.api.TokenStore;

/**
 * A service locator to bridge between the web world and OSGi world.
 *
 * @author liemmn
 *
 */
public class ServiceLocator {

    private static final ServiceLocator instance = new ServiceLocator();

    protected volatile List<ClaimAuth> claimAuthCollection = new Vector<>();

    protected volatile TokenStore tokenStore;

    protected volatile IdMService idmService;

    private ServiceLocator() {
    }

    public static ServiceLocator getInstance() {
        return instance;
    }

    /**
     * Called through reflection from the federation Activator
     *
     * @see org.opendaylight.aaa.federation.ServiceLocator
     * @param ca the injected claims implementation
     */
    protected void claimAuthAdded(ClaimAuth ca) {
        this.claimAuthCollection.add(ca);
    }

    /**
     * Called through reflection from the federation Activator
     *
     * @see org.opendaylight.aaa.federation.Activator
     * @param ca the claims implementation to remove
     */
    protected void claimAuthRemoved(ClaimAuth ca) {
        this.claimAuthCollection.remove(ca);
    }

    public List<ClaimAuth> getClaimAuthCollection() {
        return claimAuthCollection;
    }

    public void setClaimAuthCollection(List<ClaimAuth> claimAuthCollection) {
        this.claimAuthCollection = claimAuthCollection;
    }

    public TokenStore getTokenStore() {
        return tokenStore;
    }

    public void setTokenStore(TokenStore tokenStore) {
        this.tokenStore = tokenStore;
    }

    public IdMService getIdmService() {
        return idmService;
    }

    public void setIdmService(IdMService idmService) {
        this.idmService = idmService;
    }
}