blob: c9931efcb50b2a11dc90e26a3fee912df4792571 [file] [log] [blame]
Konstantinos Kanonakis0c374482017-01-18 15:03:47 -06001/*
2 * Copyright 2014 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.mefscaapi;
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 org.slf4j.LoggerFactory;
23
24/**
25 * Skeletal ONOS application component.
26 */
27@Component(immediate = true)
28public class MefScaApiAppComponent {
29
30 private final Logger log = LoggerFactory.getLogger(getClass());
31
32 @Activate
33 protected void activate() {
34 log.info("Started");
35 }
36
37 @Deactivate
38 protected void deactivate() {
39 log.info("Stopped");
40 }
41
42}