ConnectionManager proposal
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / connection / listener / SystemNotificationsListenerImpl.java
1 /**
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  * 
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowplugin.impl.connection.listener;
9
10 import org.opendaylight.openflowplugin.api.openflow.connection.ConnectionContext;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.system.rev130927.DisconnectEvent;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.system.rev130927.SwitchIdleEvent;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.system.rev130927.SystemNotificationsListener;
14
15 /**
16  * 
17  */
18 public class SystemNotificationsListenerImpl implements SystemNotificationsListener {
19     
20     private ConnectionContext connectionContext;
21
22
23     /**
24      * @param connectionContext
25      */
26     public SystemNotificationsListenerImpl(ConnectionContext connectionContext) {
27         this.connectionContext = connectionContext;
28     }
29
30     @Override
31     public void onDisconnectEvent(DisconnectEvent notification) {
32         // TODO Auto-generated method stub
33
34     }
35
36     @Override
37     public void onSwitchIdleEvent(SwitchIdleEvent notification) {
38         // TODO Auto-generated method stub
39
40     }
41
42 }