eapol/eapol_framework/eapol_common/type/simple_config/simple_config/include/simple_config_credential.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:22:35 +0200
changeset 2 1c7bc153c08e
parent 0 c8830336c852
child 26 9abfd4f00d37
permissions -rw-r--r--
Revision: 201001 Kit: 201003

/*
* Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:  EAP and WLAN authentication protocols.
*
*/

/*
* %version: 4.1.2 %
*/

#if !defined(_SIMPLE_CONFIG_CREDENTIAL_H_)
#define _SIMPLE_CONFIG_CREDENTIAL_H_

#include "eap_tools.h"
#include "simple_config_attribute_type.h"
#include "simple_config_types.h"
#include "eap_array_algorithms.h"

/** @file */


//----------------------------------------------------------------------------


/// This class defines Credential attributes.
class EAP_EXPORT simple_config_credential_c
{
private:
	//--------------------------------------------------

	/// This is pointer to the tools class.
	abs_eap_am_tools_c * const m_am_tools;

	u8_t m_network_index;

	eap_variable_data_c m_SSID;

	simple_config_Authentication_Type_e m_Authentication_Type;

	simple_config_Encryption_Type_e m_Encryption_Type;

	eap_array_c<network_key_and_index_c> m_network_keys;

	eap_variable_data_c m_MAC_address;

	bool m_is_valid;

	//--------------------------------------------------
public:
	//--------------------------------------------------

	/**
	 * The destructor of the simple_config_credential_c class does nothing.
	 */
	EAP_FUNC_IMPORT virtual ~simple_config_credential_c();

	/**
	 * The constructor of the simple_config_credential_c class simply initializes the attributes.
	 */
	EAP_FUNC_IMPORT simple_config_credential_c(
		abs_eap_am_tools_c * const tools);

	EAP_FUNC_IMPORT void set_network_index(const u8_t index);

	EAP_FUNC_IMPORT u8_t get_network_index();

	EAP_FUNC_IMPORT eap_variable_data_c * get_SSID();

	EAP_FUNC_IMPORT simple_config_Authentication_Type_e get_Authentication_Type();

	EAP_FUNC_IMPORT void set_Authentication_Type(const simple_config_Authentication_Type_e Authentication_Type);

	EAP_FUNC_IMPORT simple_config_Encryption_Type_e get_Encryption_Type();

	EAP_FUNC_IMPORT void set_Encryption_Type(const simple_config_Encryption_Type_e Encryption_Type);

	EAP_FUNC_IMPORT eap_array_c<network_key_and_index_c> * get_network_keys();

	EAP_FUNC_IMPORT eap_variable_data_c * get_MAC_address();

	EAP_FUNC_IMPORT bool get_is_valid();

	// 
	//--------------------------------------------------
}; // class simple_config_credential_c


//--------------------------------------------------

#endif //#if !defined(_SIMPLE_CONFIG_CREDENTIAL_H_)



// End.