Statistics
| Branch: | Tag: | Revision:

root / ncclient / operations / session.py @ 6e571704

History | View | Annotate | Download (1.4 kB)

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
"Session-related NETCONF operations"
16

    
17
from ncclient.xml_ import *
18

    
19
from rpc import RPC
20

    
21
class CloseSession(RPC):
22

    
23
    "`close-session` RPC. The connection to NETCONF server is also closed."
24

    
25
    def request(self):
26
        "Request graceful termination of the NETCONF session, and also close the transport."
27
        try:
28
            return self._request(new_ele("close-session"))
29
        finally:
30
            self.session.close()
31

    
32

    
33
class KillSession(RPC):
34

    
35
    "`kill-session` RPC."
36

    
37
    def request(self, session_id):
38
        """Force the termination of a NETCONF session (not the current one!)
39

40
        *session_id* is the session identifier of the NETCONF session to be terminated as a string
41
        """
42
        node = new_ele("kill-session")
43
        sub_ele(node, "session-id").text = session_id
44
        return self._request(node)