commsconfig/cscsipvoipcleanupplugin/inc/cscsvcpluginhandler.h
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:29:57 +0100
branchRCL_3
changeset 22 d38647835c2e
parent 0 a4daefaec16c
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* Copyright (c) 2007-2007 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:  
*
*/


#ifndef C_CSCSVCPLUGINHANDLER_H
#define C_CSCSVCPLUGINHANDLER_H

#include <e32base.h>
#include <badesca.h>

class CCSCSvcPluginSipHandler;
class CCSCSvcPluginRcseHandler;
class CCSCSvcPluginCenrepHandler;
 
/**
 *  An instance of class CCSCSvcPluginHandler.
 *
 *  @lib
 *  @since S60 v3.2
 */
NONSHARABLE_CLASS ( CCSCSvcPluginHandler ) : public CBase
    {
    public:

        static CCSCSvcPluginHandler* NewL();

        /**
         * Destructor.
         */
        virtual ~CCSCSvcPluginHandler();
     
     		
     		/**
         * Removes settings based on service id.
         * Function leaves on failure.
         *
         * @since S60 v3.2
         * @param aServiceId service id
         */
        void RemoveSettingsL( TUint32 aServiceId );   
                
    private:

        CCSCSvcPluginHandler();

        void ConstructL();
 
        
        /**
         * Search settings data based on service id.
         * Function leaves on failure.
         *
         * @since S60 v3.2
         * @param aServiceId service id
         */
        void SearchSettingsDataL( TUint32 aServiceId );
        
        
        /**
         * For removing SIP/VoIP profiles and NAT/FW settings.
         * Function leaves on failure.
         *
         * @since S60 v3.2
         * @param aServiceId service id
         */
        void RemoveProfilesL( TUint32 aServiceId );
        
        
    private: // data
    
        /*
         * Handles events concerning Richcall Setting Engine.
         * Own.
         */
        CCSCSvcPluginRcseHandler* iRcseHandler;
        
        /*
         * Handles events concerning SIP Profile Registry.
         * Own.
         */
        CCSCSvcPluginSipHandler* iSipHandler;
        
        /*
         * Handles events concerning Central Repository.
         * Own.
         */
        CCSCSvcPluginCenrepHandler* iCenRepHandler;
    
        /*
         * VoIP profile id.
         */
        TUint32 iVoIPProfileId;
        
        /*
         * SIP profile ids appended to the VoIP profile.
         * Own.
         */
        RArray<TUint32> iSipProfileIds;
        
        /*
         * IAP ids linked to SIP profile ids.
         * Own.
         */
        RArray<TUint32> iIapIds;
        
        /*
         * SNAP ID
         * Own.
         */
        TInt iSNAPId;
        
        /*
         * Presence ID
         * Own.
         */
        TInt iPresenceId;
        
        /*
         * Domain names linked to SIP profile ids.
         * Own.
         */
        CDesC8ArrayFlat* iDomainNames;
        
        
    };

#endif  // C_CSCSVCPLUGINHANDLER_H