24 """ |
24 """ |
25 super(SchemeAccessHandler, self).__init__(parent) |
25 super(SchemeAccessHandler, self).__init__(parent) |
26 |
26 |
27 def createRequest(self, op, request, outgoingData=None): |
27 def createRequest(self, op, request, outgoingData=None): |
28 """ |
28 """ |
29 Protected method to create a request. |
29 Public method to create a request. |
30 |
30 |
31 @param op the operation to be performed |
31 @param op the operation to be performed |
32 (QNetworkAccessManager.Operation) |
32 (QNetworkAccessManager.Operation) |
33 @param request reference to the request object (QNetworkRequest) |
33 @param request reference to the request object (QNetworkRequest) |
34 @param outgoingData reference to an IODevice containing data to be sent |
34 @param outgoingData reference to an IODevice containing data to be sent |