aboutsummaryrefslogtreecommitdiffstats
path: root/upstream/odl-aaa-moon/aaa/aaa-authn-mdsal-store/aaa-authn-mdsal-store-impl/src/main/java/org/opendaylight/yang/gen/v1/config/aaa/authn/mdsal/store/rev141031/AuthNStoreModuleFactory.java
blob: b1e278fadf81cb9fa5426c5ac6cfa35089e650ad (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
/*
 * 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
 *
 */

/*
 * Generated file
 *
 * Generated from: yang module name: aaa-authn-mdsal-store-cfg yang module local name: aaa-authn-mdsal-store
 * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
 * Generated at: Thu Mar 19 18:06:18 CET 2015
 *
 * Do not modify this file unless it is present under src/main directory
 */
package org.opendaylight.yang.gen.v1.config.aaa.authn.mdsal.store.rev141031;

import org.opendaylight.controller.config.api.DependencyResolver;
import org.osgi.framework.BundleContext;

public class AuthNStoreModuleFactory
        extends
        org.opendaylight.yang.gen.v1.config.aaa.authn.mdsal.store.rev141031.AbstractAuthNStoreModuleFactory {

    @Override
    public AuthNStoreModule instantiateModule(String instanceName,
            DependencyResolver dependencyResolver, BundleContext bundleContext) {
        AuthNStoreModule module = super.instantiateModule(instanceName, dependencyResolver,
                bundleContext);
        module.setBundleContext(bundleContext);
        return module;
    }

    @Override
    public AuthNStoreModule instantiateModule(String instanceName,
            DependencyResolver dependencyResolver, AuthNStoreModule oldModule,
            AutoCloseable oldInstance, BundleContext bundleContext) {
        AuthNStoreModule module = super.instantiateModule(instanceName, dependencyResolver,
                oldModule, oldInstance, bundleContext);
        module.setBundleContext(bundleContext);
        return module;
    }
}