webservices/idwsfplugin/inc/idwsfsoapmessage.h
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2002-2005 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Header declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 #ifndef SEN_IDWSF_SOAP_MESSAGE_H
       
    26 #define SEN_IDWSF_SOAP_MESSAGE_H
       
    27 
       
    28 // INCLUDES
       
    29 #include "idwsfsecurityheader.h"
       
    30 #include "SenSoapMessage.h"
       
    31 
       
    32 // CLASS DECLARATION
       
    33 class CIdWsfSoapMessage : public CSenSoapMessage
       
    34     {
       
    35     
       
    36     public: // Constructors and destructor
       
    37     
       
    38         static CIdWsfSoapMessage* NewL();
       
    39         virtual ~CIdWsfSoapMessage();
       
    40         
       
    41         // New functions
       
    42         
       
    43         virtual void SetSecurityMechanism(HBufC8* apSecurityMechanismURI);
       
    44 
       
    45     protected:
       
    46     
       
    47         /**
       
    48         * C++ default constructor.
       
    49         */
       
    50         CIdWsfSoapMessage();
       
    51         
       
    52         void BaseConstructL();
       
    53         virtual CSenWsSecurityHeader* NewSecurityHeaderLC(
       
    54                                                     const TDesC8* aData=NULL);
       
    55 
       
    56     private: // Data
       
    57         HBufC8* ipSecurityMechanismURI; // not owned
       
    58     };
       
    59 
       
    60 #endif // SEN_IDWSF_SOAP_MESSAGE_H
       
    61 
       
    62 // End of File