diff --git a/awips/dataaccess/__init__.py b/awips/dataaccess/__init__.py index ceb43d5..14a7fbf 100644 --- a/awips/dataaccess/__init__.py +++ b/awips/dataaccess/__init__.py @@ -17,7 +17,15 @@ # # -__all__ = [] +__all__ = [ + 'IData', + 'IDataRequest', + 'IGeometryData', + 'IGridData', + 'IGeometryData', + 'INotificationFilter', + 'INotificationSubscriber' +] import abc from six import with_metaclass @@ -143,7 +151,6 @@ class IDataRequest(with_metaclass(abc.ABCMeta, object)): return - class IData(with_metaclass(abc.ABCMeta, object)): """ An IData representing data returned from the DataAccessLayer. @@ -204,7 +211,6 @@ class IData(with_metaclass(abc.ABCMeta, object)): return - class IGridData(IData): """ An IData representing grid data that is returned by the DataAccessLayer. @@ -252,7 +258,6 @@ class IGridData(IData): return - class IGeometryData(IData): """ An IData representing geometry data that is returned by the DataAccessLayer. @@ -354,6 +359,7 @@ class INotificationSubscriber(with_metaclass(abc.ABCMeta, object)): """Closes the notification subscriber""" pass + class INotificationFilter(with_metaclass(abc.ABCMeta, object)): """ Represents data required to filter a set of URIs and