blob: 5f3dee73736e031860d6872d38745cdf83d3983b [file] [log] [blame]
Jian Li0967cd72015-11-25 17:38:48 -08001/*
2 * Copyright 2015 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.cpman;
17
18import com.sun.jndi.toolkit.ctx.ComponentContext;
19import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Deactivate;
21import org.apache.felix.scr.annotations.Modified;
22import org.slf4j.Logger;
23
24import static org.slf4j.LoggerFactory.getLogger;
25
26/**
27 * Control plane management application.
28 */
29public class ControlPlaneManager {
30
31 private final Logger log = getLogger(getClass());
32
33 @Activate
34 public void activate(ComponentContext context) {
35
36 }
37
38 @Deactivate
39 public void deactivate() {
40
41 }
42
43 @Modified
44 public void modified(ComponentContext context) {
45
46 }
47}