backing up
[vsorcdistro/.git] / ryu / build / lib.linux-armv7l-2.7 / ryu / services / protocols / zebra / server / event.py
1 # Copyright (C) 2017 Nippon Telegraph and Telephone Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #    http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 """
17 Events generated by Zebra Server service.
18 """
19
20 from ryu.controller.event import EventBase
21
22
23 class EventZServerBase(EventBase):
24     """
25     The base class for the event generated by ZServer.
26     """
27
28
29 class EventZClientConnected(EventZServerBase):
30     """
31     The event class for notifying the connection from Zebra client.
32     """
33
34     def __init__(self, zclient):
35         super(EventZClientConnected, self).__init__()
36         self.zclient = zclient
37
38
39 class EventZClientDisconnected(EventZServerBase):
40     """
41     The event class for notifying the disconnection to Zebra client.
42     """
43
44     def __init__(self, zclient):
45         super(EventZClientDisconnected, self).__init__()
46         self.zclient = zclient