Bug 8900 - fixing ACL updates
[groupbasedpolicy.git] / renderers / faas / src / main / java / org / opendaylight / controller / config / yang / config / faas_provider / impl / FaasProviderModule.java
1 /*
2  * Copyright (c) 2015 Huawei 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.faas_provider.impl;
10
11 import org.opendaylight.controller.sal.common.util.NoopAutoCloseable;
12
13 public class FaasProviderModule extends
14         org.opendaylight.controller.config.yang.config.faas_provider.impl.AbstractFaasProviderModule {
15
16     public FaasProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
17             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
18         super(identifier, dependencyResolver);
19     }
20
21     public FaasProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
22             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
23             org.opendaylight.controller.config.yang.config.faas_provider.impl.FaasProviderModule 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
38 }