pkiutilities/DeviceToken/Inc/TrustedSitesSession.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 2006 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:   The header file of TrustedSitesSession
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __TRUSTEDSITESSESSION_H__
       
    21 #define __TRUSTEDSITESSESSION_H__
       
    22 
       
    23 #include "DevTokenServer.h"
       
    24 
       
    25 class RMessage2;
       
    26 class CTrustedSitesConduit;
       
    27 
       
    28 /**
       
    29  * trusted sites session
       
    30  *
       
    31  * The class implementes in the server side to
       
    32  * handle the trust site session
       
    33  * 
       
    34  *  @lib 
       
    35  *  @since S60 v3.2
       
    36  */
       
    37 class CTrustedSitesSession : public CDevTokenServerSession
       
    38     {
       
    39     public:
       
    40     
       
    41         static CTrustedSitesSession* NewL(CTrustedSitesConduit& aConduit);
       
    42 
       
    43     private:
       
    44     
       
    45         CTrustedSitesSession(CTrustedSitesConduit& aConduit);
       
    46     
       
    47         virtual void DoServiceL(const RMessage2& aMessage);
       
    48 
       
    49     private:
       
    50     
       
    51         CTrustedSitesConduit& iConduit;
       
    52     };
       
    53 
       
    54 #endif //__TRUSTEDSITESSESSION_H__
       
    55 
       
    56 //EOF
       
    57