eapol/eapol_framework/eapol_common/type/simple_config/simple_config/src/simple_config_credential.cpp
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
child 45 bad0cc58d154
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: 5.1.2 %
*/

#include "eap_tools.h"
#include "simple_config_credential.h"

/** @file */


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

EAP_FUNC_EXPORT simple_config_credential_c::~simple_config_credential_c()
{
}

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

EAP_FUNC_EXPORT simple_config_credential_c::simple_config_credential_c(
	abs_eap_am_tools_c * const tools)
	: m_am_tools(tools)
	, m_network_index(1ul)
	, m_SSID(tools)
	, m_Authentication_Type(simple_config_Authentication_Type_None)
	, m_Encryption_Type(simple_config_Encryption_Type_None)
	, m_network_keys(tools)
	, m_MAC_address(tools)
	, m_is_valid(false)
{
	if (m_SSID.get_is_valid() == false)
	{
		return;
	}

	if (m_MAC_address.get_is_valid() == false)
	{
		return;
	}

	m_is_valid = true;
}

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

EAP_FUNC_EXPORT void simple_config_credential_c::set_network_index(const u8_t index)
{
	m_network_index = index;
}

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

EAP_FUNC_EXPORT u8_t simple_config_credential_c::get_network_index()
{
	return m_network_index;
}

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

EAP_FUNC_EXPORT eap_variable_data_c * simple_config_credential_c::get_SSID()
{
	return &m_SSID;
}

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

EAP_FUNC_EXPORT simple_config_Authentication_Type_e simple_config_credential_c::get_Authentication_Type()
{
	return m_Authentication_Type;
}

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

EAP_FUNC_EXPORT void simple_config_credential_c::set_Authentication_Type(const simple_config_Authentication_Type_e Authentication_Type)
{
	m_Authentication_Type = Authentication_Type;
}

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

EAP_FUNC_EXPORT simple_config_Encryption_Type_e simple_config_credential_c::get_Encryption_Type()
{
	return m_Encryption_Type;
}

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

EAP_FUNC_EXPORT void simple_config_credential_c::set_Encryption_Type(const simple_config_Encryption_Type_e Encryption_Type)
{
	m_Encryption_Type = Encryption_Type;
}

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

EAP_FUNC_EXPORT eap_array_c<network_key_and_index_c> * simple_config_credential_c::get_network_keys()
{
	return &m_network_keys;
}

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

EAP_FUNC_EXPORT eap_variable_data_c * simple_config_credential_c::get_MAC_address()
{
	return &m_MAC_address;
}

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

EAP_FUNC_EXPORT bool simple_config_credential_c::get_is_valid()
{
	return m_is_valid;
}

//----------------------------------------------------------------------------
// End.