eapol/eapol_framework/eapol_symbian/am/eap_notifier/inc/eap_auth_observer.h
author hgs
Thu, 24 Jun 2010 11:23:08 +0300
changeset 34 ad1f037f1ac2
parent 27 9660a5eb236f
child 36 c98682f98478
permissions -rw-r--r--
201025

/*
* Copyright (c) 2010 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: Dialog Observer implementation
*
*/

#ifndef __EAPAUTHOBSERVER_H__
#define __EAPAUTHOBSERVER_H__

class CEapAuthNotifier;

NONSHARABLE_CLASS ( CEapAuthObserver ) : public CBase, public MHbDeviceDialogObserver
    {
    public:
        /**
        * Two-phased constructor.
        */
        static CEapAuthObserver* NewL( 
                CEapAuthNotifier* aNotifier
                );
        
        /**
        * Handles the setting of the notifier (dialog) type
        * @param    aType EEapNotifierType
        */
        void SetNotifierType( CEapAuthNotifier::EEapNotifierType aType );
        
        /**
        * Destructor
        */
        ~CEapAuthObserver();
        
        /**
        * Handles the user input received from the dialog
        * @param    aData CHbSymbianVariantMap&
        */
        void DataReceived(CHbSymbianVariantMap& aData);
        
        /**
        * Handles the closing of the dialog
        * @param    aCompletionCode TInt
        */
        void DeviceDialogClosed( TInt /*aCompletionCode*/ );
    private:
        /**
        * Constructor
        */
        CEapAuthObserver( CEapAuthNotifier* aNotifier );
        
        /**
        * Handles the user name password input received from the dialog
        * @param    aData CHbSymbianVariantMap&
        */
        void UsernamePasswordDlgDataReceived( CHbSymbianVariantMap& aData );
          
        /**
        * Handles the password query user input received from the dialog
        * @param    aData CHbSymbianVariantMap&
        */
        void PwdQueryDataReceived( CHbSymbianVariantMap& aData );
        
        /**
        * Handles the old password query user input received from the dialog
        * @param    aData CHbSymbianVariantMap&
        */
        void OldPwdQueryDataReceived( CHbSymbianVariantMap& aData );
        
    private:
        /* Pointer to the object that triggered the dialog opening,
         * needed to update the information about the user input.
         */
        CEapAuthNotifier* iNotifier;
        
        /* Current EAP notifier type to serve */
        CEapAuthNotifier::EEapNotifierType iType;
    };

#endif /* __EAPAUTHOBSERVER_H__ */