Package flumotion :: Package admin :: Module connections :: Class ConnectionInfo
[hide private]

Class ConnectionInfo

source code

object --+
         |
        ConnectionInfo

I wrap the information contained in a single connection file entry.

I can be used to construct PBConnectionInfo object, but because some of my variables can be shell globs, they are all strings.

Instance Methods [hide private]
 
__init__(self, host, port, use_insecure, user, passwd, manager)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
asPBConnectionInfo(self)
Return a PBConnectionInfo object constructed from my state.
source code
 
__str__(self)
str(x)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, host, port, use_insecure, user, passwd, manager)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

asPBConnectionInfo(self)

source code 

Return a PBConnectionInfo object constructed from my state. If my state contains shell globs, I might throw a ValueError.

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)