Module domain :: Class Domain
[hide private]
[frames] | no frames]

Class Domain

source code


Domain class that represends the customers of the applciation

Instance Methods [hide private]
 
__init__(self, name)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
toDict(self)
Convert to a dict holding only standard python types.
source code
 
name(self)
Return the name of the Domain.
source code
 
desc(self)
Return the description of the Domain.
source code
 
manager(self)
Return the manager server address of the Domain.
source code
 
db(self)
Return the DB Server URL for the Domain.
source code
 
dist(self)
Return the disturibution of the Domain.
source code
 
license(self)
Return the license of the Domain.
source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, name)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)