blob: 9e437b3d63dc970f3fd9abc756b05c4af5da75ee [file] [log] [blame]
/*
* Copyright 2019-present Infosys Limited  
*   
* SPDX-License-Identifier: Apache-2.0    
*/
/**************************************
* attachWfAia.cpp
* This is an auto generated file.
* Please do not edit this file.
* All edits to be made through template source file
* <TOP-DIR/scripts/SMCodeGen/templates/stateMachineTmpls/state.cpp.tt>
**************************************/
#include "smEnumTypes.h"
#include "actionTable.h"
#include "actionHandlers/actionHandlers.h"
#include "mmeStates/attachWfAia.h"
#include "mmeStates/attachWfAuthResp.h"
using namespace mme;
using namespace SM;
/******************************************************************************
* Constructor
******************************************************************************/
AttachWfAia::AttachWfAia():State(State_e::attach_wf_aia)
{
}
/******************************************************************************
* Destructor
******************************************************************************/
AttachWfAia::~AttachWfAia()
{
}
/******************************************************************************
* creates and returns static instance
******************************************************************************/
AttachWfAia* AttachWfAia::Instance()
{
static AttachWfAia state;
return &state;
}
/******************************************************************************
* initializes eventToActionsMap
******************************************************************************/
void AttachWfAia::initialize()
{
{
ActionTable actionTable;
actionTable.addAction(&ActionHandlers::process_aia);
actionTable.addAction(&ActionHandlers::auth_req_to_ue);
actionTable.setNextState(AttachWfAuthResp::Instance());
eventToActionsMap.insert(pair<Event_e, ActionTable>(Event_e::AIA_FROM_HSS, actionTable));
}
}