securitysettings/qtconfigutils/eapqtconfiginterface/inc/eapqtvalidatorpacstorepasswordconfirm.h
changeset 26 9abfd4f00d37
equal deleted inserted replaced
25:e03a3db4489e 26:9abfd4f00d37
       
     1 /*
       
     2  * Copyright (c) 2010 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 the License "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: 
       
    15  *   EAP method validator: PAC Store password confirmation
       
    16  *
       
    17  */
       
    18 
       
    19 /*
       
    20  * %version: 3 %
       
    21  */
       
    22 
       
    23 #ifndef EAPQTVALIDATOR_PACSTOREPASSWORDCONFIRM_H
       
    24 #define EAPQTVALIDATOR_PACSTOREPASSWORDCONFIRM_H
       
    25 
       
    26 #include <eapqtvalidator.h>
       
    27 
       
    28 /*!
       
    29  * @addtogroup group_eap_config_if_impl
       
    30  * @{
       
    31  */
       
    32 /*!
       
    33  */
       
    34 class EapQtValidatorPacStorePasswordConfirm : public EapQtValidator
       
    35 {
       
    36 public:
       
    37     EapQtValidatorPacStorePasswordConfirm();
       
    38     ~EapQtValidatorPacStorePasswordConfirm();
       
    39 
       
    40     virtual EapQtValidator::Status validate(QVariant value);
       
    41     
       
    42     virtual void updateEditor(HbLineEdit *edit);
       
    43 private:
       
    44     Q_DISABLE_COPY(EapQtValidatorPacStorePasswordConfirm)
       
    45     // TODO: handle to some object to validate password with EAP Server
       
    46 };
       
    47 
       
    48 /*! @} */
       
    49 
       
    50 #endif
       
    51