QGIS/python/server/qgsservice.sip

78 lines
2.1 KiB
Plaintext
Raw Normal View History

2017-06-26 09:57:09 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/server/qgsservice.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsService
{
2017-06-26 09:57:09 +02:00
%Docstring
QgsService
Class defining interfaces for QGIS server services
This class provides methods for executing server requests
They are registered at runtime for a given service name.
.. versionadded:: 3.0
%End
%TypeHeaderCode
#include "qgsservice.h"
#include "qgsserverrequest.h"
#include "qgsserverresponse.h"
%End
public:
QgsService();
2017-06-26 09:57:09 +02:00
%Docstring
Constructor
%End
virtual ~QgsService();
2017-06-26 09:57:09 +02:00
%Docstring
Destructor
%End
virtual QString name() const = 0;
2017-06-26 09:57:09 +02:00
%Docstring
:return: the name of the service
:rtype: str
%End
virtual QString version() const = 0;
2017-06-26 09:57:09 +02:00
%Docstring
:return: the version of the service
:rtype: str
%End
virtual bool allowMethod( QgsServerRequest::Method ) const = 0;
2017-06-26 09:57:09 +02:00
%Docstring
Return true if the given method is supported for that
service.
:rtype: bool
%End
2017-06-26 09:57:09 +02:00
virtual void executeRequest( const QgsServerRequest &request,
QgsServerResponse &response,
const QgsProject *project ) = 0;
2017-06-26 09:57:09 +02:00
%Docstring
Execute the requests and set result in QgsServerRequest
%End
};
2017-06-26 09:57:09 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/server/qgsservice.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/