eapol/eapol_framework/eapol_common/include/abs_eap_general_settings_message.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:  This class defines the callback interface from eap_general_settings_client_message_if_c to the user of EAP-general settings.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 7 %
       
    20 */
       
    21 
       
    22 #if !defined(_ABS_EAP_GENERAL_SETTINGS_MESSAGE_H_)
       
    23 #define _ABS_EAP_GENERAL_SETTINGS_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 callback interface from eap_general_settings_client_message_if_c to the user of EAP-general settings.
       
    31 class EAP_EXPORT abs_eap_general_settings_message_c
       
    32 {
       
    33 private:
       
    34 	//--------------------------------------------------
       
    35 
       
    36 	//--------------------------------------------------
       
    37 protected:
       
    38 	//--------------------------------------------------
       
    39 
       
    40 	//--------------------------------------------------
       
    41 public:
       
    42 	//--------------------------------------------------
       
    43 
       
    44 	/**
       
    45 	 * The destructor of the abs_eap_core class does nothing special.
       
    46 	 */
       
    47 	virtual ~abs_eap_general_settings_message_c()
       
    48 	{
       
    49 	}
       
    50 
       
    51 	/**
       
    52 	 * The constructor of the abs_eap_core class does nothing special.
       
    53 	 */
       
    54 	abs_eap_general_settings_message_c()
       
    55 	{
       
    56 	}
       
    57 
       
    58 	virtual eap_status_e complete_get_eap_methods(
       
    59 		const eap_method_settings_c * const internal_settings) = 0;
       
    60 
       
    61 	virtual eap_status_e complete_set_eap_methods(
       
    62 		const eap_status_e completion_status) = 0;
       
    63 
       
    64 	virtual eap_status_e complete_get_certificate_lists(
       
    65 		const eap_method_settings_c * const internal_settings) = 0;
       
    66 
       
    67 	virtual eap_status_e complete_delete_all_eap_settings(
       
    68 		const eap_status_e completion_status) = 0;
       
    69 
       
    70 	virtual eap_status_e complete_copy_all_eap_settings(
       
    71 		const eap_status_e completion_status) = 0;
       
    72 
       
    73 	//--------------------------------------------------
       
    74 }; // class abs_eap_general_settings_message_c
       
    75 
       
    76 #endif //#if !defined(_ABS_EAP_GENERAL_SETTINGS_MESSAGE_H_)
       
    77 
       
    78 //--------------------------------------------------
       
    79 
       
    80 
       
    81 
       
    82 // End.