author | William Roberts <williamr@symbian.org> |
Wed, 31 Mar 2010 12:33:34 +0100 | |
branch | Symbian3 |
changeset 4 | 837f303aceeb |
parent 2 | 2fe1408b6811 |
permissions | -rw-r--r-- |
williamr@2 | 1 |
/* |
williamr@2 | 2 |
* Copyright (c) 2002-2005 Nokia Corporation and/or its subsidiary(-ies). |
williamr@2 | 3 |
* All rights reserved. |
williamr@2 | 4 |
* This component and the accompanying materials are made available |
williamr@4 | 5 |
* under the terms of "Eclipse Public License v1.0" |
williamr@2 | 6 |
* which accompanies this distribution, and is available |
williamr@4 | 7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
williamr@2 | 8 |
* |
williamr@2 | 9 |
* Initial Contributors: |
williamr@2 | 10 |
* Nokia Corporation - initial contribution. |
williamr@2 | 11 |
* |
williamr@2 | 12 |
* Contributors: |
williamr@2 | 13 |
* |
williamr@2 | 14 |
* Description: Hostlet response call back interface |
williamr@2 | 15 |
* |
williamr@2 | 16 |
*/ |
williamr@2 | 17 |
|
williamr@2 | 18 |
|
williamr@2 | 19 |
#ifndef MSEN_HOSTLET_RESPONSE_H |
williamr@2 | 20 |
#define MSEN_HOSTLET_RESPONSE_H |
williamr@2 | 21 |
|
williamr@2 | 22 |
#include <e32base.h> |
williamr@2 | 23 |
|
williamr@2 | 24 |
// FORWARD DECLARE |
williamr@2 | 25 |
class MSenProperties; |
williamr@2 | 26 |
class MSenMessage; |
williamr@2 | 27 |
|
williamr@2 | 28 |
|
williamr@2 | 29 |
class MSenHostletResponse |
williamr@2 | 30 |
{ |
williamr@2 | 31 |
public: |
williamr@2 | 32 |
/** |
williamr@2 | 33 |
* Set the response |
williamr@2 | 34 |
* @param aResponseUtf8 is the response that this hostlet is providing |
williamr@2 | 35 |
* @param aCode can be set to error code, in case that request is not |
williamr@2 | 36 |
* accepted by this hostlet. |
williamr@2 | 37 |
* @param aResponseProperties may be provided in order to pass (transport) |
williamr@2 | 38 |
* properties with the response. |
williamr@2 | 39 |
* @param aResponseMessage may be provided in order to pass concrete |
williamr@2 | 40 |
* message object with the response (like libxml2 based SOAP-ENV, |
williamr@2 | 41 |
* CSenSoapEnvelope2) |
williamr@2 | 42 |
*/ |
williamr@2 | 43 |
virtual void SetResponseUtf8L(const TDesC8& aResponseUtf8, |
williamr@2 | 44 |
const TInt aResponseCode = KErrNone, |
williamr@2 | 45 |
MSenProperties* aResponseProperties = NULL, |
williamr@2 | 46 |
MSenMessage* apMessage = NULL) = 0; |
williamr@2 | 47 |
|
williamr@2 | 48 |
/** |
williamr@2 | 49 |
* Getter for request (transaction) ID |
williamr@2 | 50 |
* @return the id of the request to which this is a response for |
williamr@2 | 51 |
*/ |
williamr@2 | 52 |
virtual TInt RequestId() const = 0; |
williamr@2 | 53 |
|
williamr@2 | 54 |
/** |
williamr@2 | 55 |
* Getter for response data |
williamr@2 | 56 |
* @return the set response as UTF-8 descriptor |
williamr@2 | 57 |
*/ |
williamr@2 | 58 |
virtual TPtrC8 ResponseUtf8() = 0; |
williamr@2 | 59 |
|
williamr@2 | 60 |
/** |
williamr@2 | 61 |
* Getter for response code |
williamr@2 | 62 |
* @return the response code (KErrNone or some error) that hostlet has provided |
williamr@2 | 63 |
*/ |
williamr@2 | 64 |
virtual TInt ResponseCode() const = 0; |
williamr@2 | 65 |
|
williamr@2 | 66 |
/** |
williamr@2 | 67 |
* Getter for response properties |
williamr@2 | 68 |
*/ |
williamr@2 | 69 |
virtual MSenProperties* ResponseProperties() = 0; |
williamr@2 | 70 |
}; |
williamr@2 | 71 |
|
williamr@2 | 72 |
#endif // MSEN_HOSTLET_RESPONSE_H |