Bug 8900 - fixing ACL updates
[groupbasedpolicy.git] / renderers / iovisor / src / main / java / org / opendaylight / controller / config / yang / config / iovisor_provider / impl / IovisorProviderModule.java
1 /*
2  * Copyright (c) 2015 Inocybe Technologies and others. 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 package org.opendaylight.controller.config.yang.config.iovisor_provider.impl;
10
11 import org.opendaylight.controller.sal.common.util.NoopAutoCloseable;
12 @Deprecated
13 public class IovisorProviderModule
14         extends org.opendaylight.controller.config.yang.config.iovisor_provider.impl.AbstractIovisorProviderModule {
15
16     public IovisorProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
17             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
18         super(identifier, dependencyResolver);
19     }
20
21     public IovisorProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
22             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
23             org.opendaylight.controller.config.yang.config.iovisor_provider.impl.IovisorProviderModule oldModule,
24             java.lang.AutoCloseable oldInstance) {
25         super(identifier, dependencyResolver, oldModule, oldInstance);
26     }
27
28     @Override
29     public void customValidation() {
30         // add custom validation form module attributes here.
31     }
32
33     @Override
34     public java.lang.AutoCloseable createInstance() {
35         return NoopAutoCloseable.INSTANCE;
36     }
37 }