webservices/wsconnectionagent/inc/senconnagentsession.h
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2009 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 
       
    26 
       
    27 #include <e32base.h>
       
    28 
       
    29 
       
    30 class MSenFilesObserver;
       
    31 class MSenAuthenticationProvider;
       
    32 class CSenIdentityProvider;
       
    33 class MSenCoBrandingObserver;
       
    34 #ifdef __ENABLE_ALR__
       
    35 class MMobilityProtocolResp;
       
    36 #endif //__ENABLE_ALR__
       
    37 
       
    38 NONSHARABLE_CLASS(CSenConnAgentSession): public CSession2
       
    39     {
       
    40     private:
       
    41     ~CSenConnAgentSession();
       
    42     void ServiceL(const RMessage2& aMessage);
       
    43     void Disconnect(const RMessage2& aMessage);
       
    44     TInt ReauthenticationNeededL(const RMessage2& aMessage);
       
    45     TInt CoBrandingGoNoGoL(const RMessage2& aMessage);
       
    46     
       
    47     private:
       
    48     MSenFilesObserver* iObserver;
       
    49     MSenAuthenticationProvider* iAuthObserver;
       
    50     MSenCoBrandingObserver* ipCoBrandingObserver;
       
    51 #ifdef __ENABLE_ALR__
       
    52     MMobilityProtocolResp* iMobiltyObserver;
       
    53 #endif //__ENABLE_ALR__
       
    54     };