Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include "restrequest.h"
RestRequest::RestRequest(QByteArray pData,QString pPath, RestRequest::methods pMethod,RestRequestCallback pSuccess)
{
setContent(pData);
setMethod(pMethod);
setPath(pPath);
setSuccess(pSuccess);
}
RestRequest::RestRequest(QByteArray pData,QString pPath, RestRequest::methods pMethod,RestRequestCallback pSuccess, RestRequestCallback pError)
{
setContent(pData);
setMethod(pMethod);
setPath(pPath);
setSuccess(pSuccess);
setError(pError);
}
RestRequest::methods RestRequest::getMethod() const
{
return mMethod;
}
void RestRequest::setMethod(const methods &pValue)
{
mMethod = pValue;
}
QString RestRequest::getPath() const
{
return mPath;
}
void RestRequest::setPath(const QString &pValue)
{
mPath = pValue;
}
QByteArray RestRequest::getContent() const
{
return mContent;
}
void RestRequest::setContent(const QByteArray &pValue)
{
mContent = pValue;
}
RestRequestCallback RestRequest::getSuccess() const
{
return mSuccess;
}
void RestRequest::setSuccess(const RestRequestCallback &pValue)
{
mSuccess = pValue;
}
RestRequestCallback RestRequest::getError() const
{
return mError;
}
void RestRequest::setError(const RestRequestCallback &pValue)
{
mError = pValue;
}
RestRequest::RestRequest()
{
}
bool RestRequest::getAbsolutePath() const
{
return mAbsolutePath;
}
QString RestRequest::getMimeType() const
{
return mMimeType;
}
void RestRequest::setMimeType(const QString &pValue)
{
mMimeType = pValue;
}
bool RestRequest::isRawData()
{
return mRawData;
}