Skip to content

Commit

Permalink
Fixing typos in WPS interfaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinius committed Mar 13, 2017
1 parent cbe97d3 commit 2d07cf4
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions eoxserver/services/ows/wps/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# Project: EOxServer <http://eoxserver.org>
# Authors: Fabian Schindler <fabian.schindler@eox.at>
# Martin Paces <martin.paces@eox.at>
#
#-------------------------------------------------------------------------------
# Copyright (C) 2013 EOX IT Services GmbH
Expand All @@ -25,6 +26,7 @@
# THE SOFTWARE.
#-------------------------------------------------------------------------------


class AsyncBackendInterface(object):
""" Interface class for an asynchronous WPS back-end.
NOTE: Only one asynchronous back-end at time is allowed to be configured.
Expand Down Expand Up @@ -79,7 +81,6 @@ def resume(self, job_id, **kwargs):
""" Resume the job execution. """



class ProcessInterface(object):
""" Interface class for processes offered, described and executed by
the WPS.
Expand All @@ -92,15 +93,15 @@ def version(self):
"""

@property
def synchrous(self):
def synchronous(self):
""" Optional boolean flag indicating whether the process can be executed
synchronously. If missing the True is assumed.
synchronously. If missing True is assumed.
"""

@property
def asynchrous(self):
def asynchronous(self):
""" Optional boolean flag indicating whether the process can be executed
synchronously. If missing the False is assumed.
asynchronously. If missing False is assumed.
"""

@property
Expand Down Expand Up @@ -158,8 +159,8 @@ def inputs(self):
def outputs(self):
""" A dict mapping the outputs' identifiers to their respective types.
The type can be either one of the supported native python types
(automatically converted to a ``LiterData`` object) or an instance
of one of the data-specification classes (``LiterData``,
(automatically converted to a ``LiteralData`` object) or an instance
of one of the data-specification classes (``LiteralData``,
``BoundingBoxData``, or ``ComplexData``). Mandatory.
"""

Expand Down

0 comments on commit 2d07cf4

Please sign in to comment.