~lutostag/ubuntu/trusty/maas/1.5.2+packagefix

« back to all changes in this revision

Viewing changes to src/provisioningserver/rpc/interfaces.py

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2014-03-28 10:43:53 UTC
  • mto: This revision was merged to the branch mainline in revision 57.
  • Revision ID: package-import@ubuntu.com-20140328104353-ekpolg0pm5xnvq2s
Tags: upstream-1.5+bzr2204
ImportĀ upstreamĀ versionĀ 1.5+bzr2204

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2014 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
"""Interfaces for the RPC implementation."""
 
5
 
 
6
from __future__ import (
 
7
    absolute_import,
 
8
    print_function,
 
9
    unicode_literals,
 
10
    )
 
11
 
 
12
str = None
 
13
 
 
14
__metaclass__ = type
 
15
__all__ = []
 
16
 
 
17
from zope import interface
 
18
 
 
19
 
 
20
class IConnection(interface.Interface):
 
21
 
 
22
    ident = interface.Attribute(
 
23
        "ident", "An identifier far end of the connection.")
 
24
 
 
25
    hostCertificate = interface.Attribute(
 
26
        "hostCertificate", "The certificate used locally for TLS.")
 
27
 
 
28
    # TODO: peerCertificate raises an exception when TLS is not
 
29
    # activated, or maybe that's just in tests. Investigation is needed.
 
30
    # peerCertificate = interface.Attribute(
 
31
    #     "peerCertificate", "The certificate used remotely for TLS.")
 
32
 
 
33
    def callRemote(cmd, **arguments):
 
34
        """Call a remote method with the given arguments."""