blob: 1d17f5f38707bb5a434cb0f6173d00d909ced81c [file] [log] [blame]
Thomas Vachuska7399e482014-12-01 21:27:42 -08001/*
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 sample.bundle;
17
18import org.apache.felix.scr.annotations.Activate;
19import org.apache.felix.scr.annotations.Component;
20import org.apache.felix.scr.annotations.Deactivate;
21import org.apache.felix.scr.annotations.Service;
22import org.slf4j.Logger;
23import org.slf4j.LoggerFactory;
24
25/**
26 * Skeletal ONOS application component.
27 */
28@Component(immediate = true)
29@Service
30public class AppComponent implements AppService {
31
32 private static Logger log = LoggerFactory.getLogger(AppComponent.class);
33
34 @Activate
35 protected void activate() {
36 log.info("Started");
37 }
38
39 @Deactivate
40 protected void deactivate() {
41 log.info("Stopped");
42 }
43
44}