QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsbufferserverrequest.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsbufferserverrequest.cpp
3 
4  Define response wrapper for bbuffer response
5  -------------------
6  begin : 2017-01-03
7  copyright : (C) 2017 by David Marteau
8  email : david dot marteau at 3liz dot com
9  ***************************************************************************/
10 
11 /***************************************************************************
12  * *
13  * This program is free software; you can redistribute it and/or modify *
14  * it under the terms of the GNU General Public License as published by *
15  * the Free Software Foundation; either version 2 of the License, or *
16  * (at your option) any later version. *
17  * *
18  ***************************************************************************/
19 
20 #include "qgsbufferserverrequest.h"
21 #include "qgslogger.h"
22 #include "qgsmessagelog.h"
23 
24 #include <QDebug>
25 
26 QgsBufferServerRequest::QgsBufferServerRequest( const QString &url, Method method, const QgsServerRequest::Headers &headers, QByteArray *data )
27  : QgsServerRequest( url, method, headers )
28 {
29  if ( data )
30  {
31  mData = *data;
32  }
33 }
34 
36  : QgsServerRequest( url, method, headers )
37 {
38  if ( data )
39  {
40  mData = *data;
41  }
42 }
QgsBufferServerRequest(const QString &url, QgsServerRequest::Method method=QgsServerRequest::GetMethod, const QgsServerRequest::Headers &headers=QgsServerRequest::Headers(), QByteArray *data=nullptr)
Constructor.
Method
HTTP Method (or equivalent) used for the request.
QMap< QString, QString > Headers
QMap< QString, QString > headers() const
Returns the header map.
QgsServerRequest::Method method() const
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
QByteArray data() const override
Returns post/put data Check for QByteArray::isNull() to check if data is available.