Commit 2b3426e3 authored by Cédric de Saint Martin's avatar Cédric de Saint Martin Committed by Rafael Monnerat

slap: update interface.

parent 37613b1f
...@@ -35,6 +35,12 @@ class IException(Interface): ...@@ -35,6 +35,12 @@ class IException(Interface):
Classes which implement IException are used to report errors. Classes which implement IException are used to report errors.
""" """
class IConnectionError(IException):
"""
Classes which implement IServerError are used to report a connection problem
to the slap server.
"""
class IServerError(IException): class IServerError(IException):
""" """
Classes which implement IServerError are used to report unexpected error Classes which implement IServerError are used to report unexpected error
...@@ -164,6 +170,12 @@ class ISoftwareProductCollection(Interface): ...@@ -164,6 +170,12 @@ class ISoftwareProductCollection(Interface):
software_product, by querying SlapOS Master. software_product, by querying SlapOS Master.
""" """
class ISoftwareInstance(Interface):
"""
Classes which implement ISoftwareRelease are used by slap to represent
informations about a Software Instance.
"""
class IComputerPartition(IBuildoutController, IRequester): class IComputerPartition(IBuildoutController, IRequester):
""" """
Computer Partition interface specification Computer Partition interface specification
......
...@@ -60,15 +60,6 @@ fallback_logger.addHandler(fallback_handler) ...@@ -60,15 +60,6 @@ fallback_logger.addHandler(fallback_handler)
DEFAULT_SOFTWARE_TYPE = 'RootSoftwareInstance' DEFAULT_SOFTWARE_TYPE = 'RootSoftwareInstance'
class AuthenticationError(Exception):
pass
class ConnectionError(Exception):
pass
class SlapDocument: class SlapDocument:
def __init__(self, connection_helper=None): def __init__(self, connection_helper=None):
if connection_helper is not None: if connection_helper is not None:
...@@ -197,6 +188,7 @@ class SoftwareInstance(SlapDocument): ...@@ -197,6 +188,7 @@ class SoftwareInstance(SlapDocument):
""" """
Contains Software Instance information Contains Software Instance information
""" """
zope.interface.implements(interface.ISoftwareInstance)
def __init__(self, **kwargs): def __init__(self, **kwargs):
""" """
...@@ -207,20 +199,22 @@ class SoftwareInstance(SlapDocument): ...@@ -207,20 +199,22 @@ class SoftwareInstance(SlapDocument):
"""Exposed exceptions""" """Exposed exceptions"""
# XXX Why do we need to expose exceptions?
class ResourceNotReady(Exception): class ResourceNotReady(Exception):
zope.interface.implements(interface.IResourceNotReady) zope.interface.implements(interface.IResourceNotReady)
class ServerError(Exception): class ServerError(Exception):
zope.interface.implements(interface.IServerError) zope.interface.implements(interface.IServerError)
class NotFoundError(Exception): class NotFoundError(Exception):
zope.interface.implements(interface.INotFoundError) zope.interface.implements(interface.INotFoundError)
class AuthenticationError(Exception):
pass
class ConnectionError(Exception):
zope.interface.implements(interface.IConnectionError)
class Supply(SlapDocument): class Supply(SlapDocument):
zope.interface.implements(interface.ISupply) zope.interface.implements(interface.ISupply)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment