webservices/wsoviplugin/inc/wsoviserviceupdatehandler.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 07 Jan 2010 16:19:19 +0200
changeset 0 62f9d29f7211
permissions -rw-r--r--
Revision: 200951 Kit: 201001

/*
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: Header declaration
*
*/








#ifndef WSOvi_SU_HANDLER_H
#define WSOvi_SU_HANDLER_H

// INCLUDES
#include <e32std.h>
#include <flogger.h>
#include "sensessionhandler.h"
#include "wsovihandlercontext.h"
#include "wsovisessioncontext.h"
#include "wsovicons.h"
#include "wsoviservicesession.h"


/**
 * Class:CWSOviServiceUpdateHandler
 *
 * An implementation of the CWSOviSessionHandler definition. This is concrete
 * class, instance of which ECOM framework gives to ECOM clients.
 *
 * Class represent phase related to session, before discovering and validation.
 *      Main goal is to indirectly implement (by passing session context) SIF method:
 *          -registegr/unregister service description
 */
class CWSOviServiceUpdateHandler : public CSenSessionHandler
    {

    public:
        /**
         * Function:    NewL
         *
         * Description: Create instance of concrete implementation. Note that ECOM
         *              interface implementations can only have two signatures for
         *              NewL:
         *               - NewL without parameters (used here)
         *               - NewL with TAny* pointer, which may provide some client
         *                 data
         *
         * Returns:    Instance of this class.
         *
         * Note:       The interface, which is abstract base class of this
         *             implementation, also provides NewL method. Normally abstract
         *             classes do not provide NewL, because they cannot create
         *             instances of themselves.
         */

        static CWSOviServiceUpdateHandler* NewL(TAny* aHandlerCtx);
        virtual TInt InvokeL(MSenSessionContext& aCtx);
        ~CWSOviServiceUpdateHandler();
        
        virtual SenHandler::THandlerDirection Direction() const;
        virtual SenHandler::THandlerPhase Phase();
        virtual TInt InitL(MSenHandlerContext& aCtx);
        
            
    protected:
        /**
         * Function:   CWSOviServiceUpdateHandler
         *
         * Discussion: Perform the first phase of two phase construction
         */
        CWSOviServiceUpdateHandler(MSenHandlerContext& aCtx);
        
        
        /**
         * Function:   ConstructL
         *
         * Discussion: Perform the second phase construction of a
         *             CImplementationClassPlus object.
         */
        void ConstructL();


    private:
    };


#endif // WSOvi_SU_HANDLER_PLUGIN_H