43b072c4b178306b643556a4a3234817022cc45d
[ccsdk/features.git] / sdnr / wt / odlux / apps / lineOfSightApp / src2 / main / java / org / onap / ccsdk / features / sdnr / wt / odlux / bundles / MyOdluxBundle.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : ccsdk feature sdnr wt
4  * =================================================================================================
5  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
6  * =================================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  * http://www.apache.org/licenses/LICENSE-2.0
11  * 
12  * Unless required by applicable law or agreed to in writing, software distributed under the License
13  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
14  * or implied. See the License for the specific language governing permissions and limitations under
15  * the License.
16  * ============LICENSE_END==========================================================================
17  */
18 package org.onap.ccsdk.features.sdnr.wt.odlux.bundles;
19
20 import org.onap.ccsdk.features.sdnr.wt.odlux.model.bundles.OdluxBundle;
21 import org.onap.ccsdk.features.sdnr.wt.odlux.model.bundles.OdluxBundleLoader;
22
23 public class MyOdluxBundle extends OdluxBundle {
24
25     @Override
26     public void initialize() {
27         super.initialize();
28     }
29
30     @Override
31     public void clean() {
32         super.clean();
33     }
34
35     @Override
36     public String getResourceFileContent(String filename) {
37         return super.getResourceFileContent(filename);
38     }
39
40     @Override
41     public boolean hasResource(String filename) {
42         return super.hasResource(filename);
43     }
44
45     @Override
46     public void setBundleName(String bundleName) {
47         super.setBundleName(bundleName);
48     }
49
50     @Override
51     public void setLoader(OdluxBundleLoader loader) {
52         super.setLoader(loader);
53     }
54
55     @Override
56     public String getBundleName() {
57         return super.getBundleName();
58     }
59
60     @Override
61     public OdluxBundleLoader getLoader() {
62         return super.getLoader();
63     }
64
65     public MyOdluxBundle() {
66         super();
67     }
68 }