eapol/eapol_framework/eapol_common/include/abs_eap_plugin_message.h
branchRCL_3
changeset 18 bad0cc58d154
equal deleted inserted replaced
17:30e048a7b597 18:bad0cc58d154
       
     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_PLUGIN_MESSAGE_H_)
       
    23 #define _ABS_EAP_PLUGIN_MESSAGE_H_
       
    24 
       
    25 #include "eap_tools.h"
       
    26 #include "eap_am_export.h"
       
    27 
       
    28 class eap_method_settings_c;
       
    29 
       
    30 /// This class defines the interface the eap_core_c class
       
    31 /// will use with the partner class (lower layer).
       
    32 class EAP_EXPORT abs_eap_plugin_message_c
       
    33 {
       
    34 private:
       
    35 	//--------------------------------------------------
       
    36 
       
    37 	//--------------------------------------------------
       
    38 protected:
       
    39 	//--------------------------------------------------
       
    40 
       
    41 	//--------------------------------------------------
       
    42 public:
       
    43 	//--------------------------------------------------
       
    44 
       
    45 	/**
       
    46 	 * The destructor of the abs_eap_core class does nothing special.
       
    47 	 */
       
    48 	virtual ~abs_eap_plugin_message_c()
       
    49 	{
       
    50 	}
       
    51 
       
    52 	/**
       
    53 	 * The constructor of the abs_eap_core class does nothing special.
       
    54 	 */
       
    55 	abs_eap_plugin_message_c()
       
    56 	{
       
    57 	}
       
    58 
       
    59 	virtual eap_status_e complete_get_configuration(
       
    60 		const eap_method_settings_c * const internal_settings) = 0;
       
    61 
       
    62 	virtual eap_status_e complete_set_configuration(
       
    63 		const eap_status_e completion_status) = 0;
       
    64 
       
    65 	virtual eap_status_e complete_delete_configuration(
       
    66 		const eap_status_e completion_status) = 0;
       
    67 
       
    68 	virtual eap_status_e complete_copy_configuration(
       
    69 		const eap_status_e completion_status) = 0;
       
    70 
       
    71 	virtual eap_status_e complete_set_index(
       
    72 		const eap_status_e completion_status) = 0;
       
    73 
       
    74 	virtual eap_status_e complete_get_type_info(
       
    75 		const eap_method_settings_c * const internal_settings) = 0;
       
    76 
       
    77 	virtual eap_status_e complete_invoke_ui(
       
    78 		const eap_method_settings_c * const internal_settings) = 0;
       
    79 
       
    80 	//--------------------------------------------------
       
    81 }; // class abs_eap_plugin_message_c
       
    82 
       
    83 #endif //#if !defined(_ABS_EAP_PLUGIN_MESSAGE_H_)
       
    84 
       
    85 //--------------------------------------------------
       
    86 
       
    87 
       
    88 
       
    89 // End.