remotestoragefw/rsfwnotifierplugins/inc/rsfwauthenticationdlgrequest.h
branchRCL_3
changeset 19 88ee4cf65e19
parent 16 87c71b25c937
child 20 1aa8c82cb4cb
equal deleted inserted replaced
16:87c71b25c937 19:88ee4cf65e19
     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:  Authentication dialog request to the notifier plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_RSFWAUTHENTICATIONDLGREQUEST_H
       
    20 #define T_RSFWAUTHENTICATIONDLGREQUEST_H
       
    21 
       
    22 #include "e32cmn.h"
       
    23 
       
    24 #include "rsfwnotpluginrequest.h"
       
    25 
       
    26 /**
       
    27 *  Parameters for authentication dialog request
       
    28 *
       
    29 */
       
    30 class TRsfwAuthenticationDlgRequest : public TRsfwNotPluginRequest
       
    31     {
       
    32 public:
       
    33     // current username
       
    34     TBuf<KRsfwMaxUsernameLength>  iUserName;
       
    35     
       
    36     // current password
       
    37     TBuf<KRsfwMaxPasswordLength>  iPassword;
       
    38     	
       
    39     };
       
    40 
       
    41 // Package buffer to hold auht request parameter information
       
    42 typedef TPckgBuf<TRsfwAuthenticationDlgRequest> TRsfwAuthParamsPckg;
       
    43 
       
    44 #endif