blob: c41e950e33600e815871affddb87d4cd9b77bb9e [file] [log] [blame]
Sithara Punnassery8b155b22017-03-02 14:13:32 -08001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.yang;
17
18import org.apache.felix.scr.annotations.Activate;
19import org.apache.felix.scr.annotations.Component;
20import org.apache.felix.scr.annotations.Deactivate;
21import org.slf4j.Logger;
22import static org.slf4j.LoggerFactory.getLogger;
23
24/**
25 * Base application to bring in the YANG libraries and assemble them for other apps to use.
26 *
27 */
28@Component(immediate = true)
29public class YangManager {
30 private final Logger log = getLogger(getClass());
31 @Activate
32 public void activate() {
33 //log.info("Onos Yang Extension Activated!!");
34 }
35
36 @Deactivate
37 public void deactivate() {
38 //log.info("Onos Yang Extension Deactivated!!");
39 }
40}