address issue 8
[ncclient] / ncclient / operations / __init__.py
1 # Copyright 2009 Shikhar Bhushan
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 implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 from errors import OperationError, TimeoutExpiredError, MissingCapabilityError
16 from rpc import RPC, RPCReply, RPCError
17
18 # rfc4741 ops
19 from retrieve import Get, GetConfig, GetReply
20 from edit import EditConfig, CopyConfig, DeleteConfig, Validate, Commit, DiscardChanges
21 from session import CloseSession, KillSession
22 from lock import Lock, Unlock, LockContext
23 # others...
24 from flowmon import PoweroffMachine, RebootMachine
25
26 __all__ = [
27     'RPC',
28     'RPCReply',
29     'RPCError',
30     'Get',
31     'GetConfig',
32     'GetReply',
33     'EditConfig',
34     'CopyConfig',
35     'Validate',
36     'Commit',
37     'DiscardChanges',
38     'DeleteConfig',
39     'Lock',
40     'Unlock',
41     'PoweroffMachine',
42     'RebootMachine',
43     'LockContext',
44     'CloseSession',
45     'KillSession',
46     'OperationError',
47     'TimeoutExpiredError',
48     'MissingCapabilityError'
49 ]