Moving all files to root directory
[appc.git] / appc-provider / appc-provider-bundle / src / main / java / org / opendaylight / yang / gen / v1 / org / openecomp / appc / provider / impl / rev140523 / AppcProviderModule.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.opendaylight.yang.gen.v1.org.openecomp.appc.provider.impl.rev140523;
23
24 import org.openecomp.appc.provider.AppcProvider;
25
26 /**
27  * This was generated code. It was generated into the source tree because it has to be manually modified.
28  * 
29  */
30 public class AppcProviderModule extends
31                 org.opendaylight.yang.gen.v1.org.openecomp.appc.provider.impl.rev140523.AbstractAppcProviderModule {
32
33     /**
34      * @param identifier
35      * @param dependencyResolver
36      */
37     @SuppressWarnings("javadoc")
38     public AppcProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
39                               org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
40         super(identifier, dependencyResolver);
41     }
42
43     /**
44      * @param identifier
45      * @param dependencyResolver
46      * @param oldModule
47      * @param oldInstance
48      */
49     @SuppressWarnings("javadoc")
50     public AppcProviderModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
51                               org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
52                               org.opendaylight.yang.gen.v1.org.openecomp.appc.provider.impl.rev140523.AppcProviderModule oldModule,
53                               java.lang.AutoCloseable oldInstance) {
54         super(identifier, dependencyResolver, oldModule, oldInstance);
55     }
56
57     /**
58      * @see org.opendaylight.yang.gen.v1.org.openecomp.appc.provider.impl.rev140523.AbstractAppcProviderModule#customValidation()
59      */
60     @Override
61     public void customValidation() {
62         // add custom validation form module attributes here.
63     }
64
65     /**
66      * This method is manually updated to actually invoke the provider implementation
67      * 
68      * @see org.opendaylight.yang.gen.v1.org.openecomp.appc.provider.impl.rev140523.AbstractAppcProviderModule#createInstance()
69      */
70     @Override
71     public java.lang.AutoCloseable createInstance() {
72
73         final AppcProvider provider =
74             new AppcProvider(getDataBrokerDependency(), getNotificationServiceDependency(), getRpcRegistryDependency());
75         return new AutoCloseable() {
76
77             @Override
78             public void close() throws Exception {
79                 provider.close();
80             }
81         };
82
83     }
84
85 }