eapol/eapol_framework/eapol_common/am/include/abs_eap_am_plugin.h
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
     1 /*
       
     2 * Copyright (c) 2001-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 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:  EAP and WLAN authentication protocols.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: %
       
    20 */
       
    21 
       
    22 #if !defined(_ABS_EAP_AM_PLUGIN_H_)
       
    23 #define _ABS_EAP_AM_PLUGIN_H_
       
    24 
       
    25 #include "eap_tools.h"
       
    26 #include "eap_status.h"
       
    27 #include "eap_am_export.h"
       
    28 
       
    29 class eap_method_settings_c;
       
    30 
       
    31 /** @file */
       
    32 
       
    33 /// This class is the common part of EAP message interface.
       
    34 /// This class is interface to the message creation and parsing function.
       
    35 class EAP_EXPORT abs_eap_am_plugin_c
       
    36 {
       
    37 
       
    38 private:
       
    39 
       
    40 	// ----------------------------------------------------------------------
       
    41 
       
    42 public:
       
    43 
       
    44 	virtual ~abs_eap_am_plugin_c()
       
    45 	{
       
    46 	}
       
    47 
       
    48 	virtual eap_status_e complete_get_configuration(const eap_method_settings_c * const internal_settings) = 0;
       
    49 
       
    50 	virtual eap_status_e complete_set_configuration(const eap_method_settings_c * const internal_settings) = 0;
       
    51 
       
    52 	virtual eap_status_e complete_delete_configuration(const eap_method_settings_c * const internal_settings) = 0;
       
    53 
       
    54 	virtual eap_status_e complete_copy_configuration(const eap_method_settings_c * const internal_settings) = 0;
       
    55 
       
    56 	virtual eap_status_e complete_set_index(const eap_method_settings_c * const internal_settings) = 0;
       
    57 
       
    58 	virtual eap_status_e complete_get_type_info(const eap_method_settings_c * const internal_settings) = 0;
       
    59 
       
    60 	virtual eap_status_e complete_invoke_ui(const eap_method_settings_c * const internal_settings) = 0;
       
    61 
       
    62 	// ----------------------------------------------------------------------
       
    63 };
       
    64 
       
    65 #endif //#if !defined(_ABS_EAP_AM_PLUGIN_H_)
       
    66 
       
    67 
       
    68 //--------------------------------------------------
       
    69 // End