Bug 8900 - fixing ACL updates
[groupbasedpolicy.git] / groupbasedpolicy / src / main / java / org / opendaylight / controller / config / yang / config / groupbasedpolicy / PolicyValidatorRegistryModuleFactory.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 /*
10 * Generated file
11 *
12 * Generated from: yang module name: groupbasedpolicy-cfg yang module local name: policy-validator-registry-impl
13 * Generated by: org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
14 * Generated at: Thu Dec 10 17:52:04 CET 2015
15 *
16 * Do not modify this file unless it is present under src/main directory
17 */
18 package org.opendaylight.controller.config.yang.config.groupbasedpolicy;
19
20 import org.opendaylight.controller.config.api.DependencyResolver;
21 import org.osgi.framework.BundleContext;
22
23 @Deprecated
24 public class PolicyValidatorRegistryModuleFactory extends org.opendaylight.controller.config.yang.config.groupbasedpolicy.AbstractPolicyValidatorRegistryModuleFactory {
25
26     @Override
27     public PolicyValidatorRegistryModule instantiateModule(String instanceName, DependencyResolver dependencyResolver,
28             PolicyValidatorRegistryModule oldModule, AutoCloseable oldInstance, BundleContext bundleContext) {
29         PolicyValidatorRegistryModule module = super.instantiateModule(instanceName, dependencyResolver, oldModule,
30                 oldInstance, bundleContext);
31         module.setBundleContext(bundleContext);
32         return module;
33     }
34
35     @Override
36     public PolicyValidatorRegistryModule instantiateModule(String instanceName, DependencyResolver dependencyResolver,
37             BundleContext bundleContext) {
38         PolicyValidatorRegistryModule module = super.instantiateModule(instanceName, dependencyResolver, bundleContext);
39         module.setBundleContext(bundleContext);
40         return module;
41     }
42 }