blob: 93af0335433c00e8c029faf28f90835d1c85906a [file] [log] [blame]
/*
* Copyright 2019-present Infosys Limited  
*   
* SPDX-License-Identifier: Apache-2.0    
*/
/**************************************
* attachWfIdentityResponse.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/attachWfIdentityResponse.h"
#include "mmeStates/attachWfAia.h"
using namespace mme;
using namespace SM;
/******************************************************************************
* Constructor
******************************************************************************/
AttachWfIdentityResponse::AttachWfIdentityResponse():State(State_e::attach_wf_identity_response)
{
}
/******************************************************************************
* Destructor
******************************************************************************/
AttachWfIdentityResponse::~AttachWfIdentityResponse()
{
}
/******************************************************************************
* creates and returns static instance
******************************************************************************/
AttachWfIdentityResponse* AttachWfIdentityResponse::Instance()
{
static AttachWfIdentityResponse state;
return &state;
}
/******************************************************************************
* initializes eventToActionsMap
******************************************************************************/
void AttachWfIdentityResponse::initialize()
{
{
ActionTable actionTable;
actionTable.addAction(&ActionHandlers::process_identity_response);
actionTable.addAction(&ActionHandlers::send_air_to_hss);
actionTable.setNextState(AttachWfAia::Instance());
eventToActionsMap.insert(pair<Event_e, ActionTable>(Event_e::IDENTITY_RESPONSE_FROM_UE, actionTable));
}
}