AusweisApp2
MsgHandlerPersonalization.h
gehe zur Dokumentation dieser Datei
1 
7 #pragma once
8 
9 #if __has_include("context/PersonalizationContext.h")
10 
11  #include "MsgHandlerWorkflows.h"
13  #include "messages/MsgContext.h"
14 
15 namespace governikus
16 {
17 
18 class MsgHandlerPersonalization
19  : public MsgHandlerWorkflows
20 {
21  private:
22  QString createUrl(const QString& pUrl);
23  void initPersonalization(const QString& pAppletServiceURL);
24 
25  public:
26  MsgHandlerPersonalization();
27  explicit MsgHandlerPersonalization(const QJsonObject& pObj, MsgContext& pContext);
28  explicit MsgHandlerPersonalization(const QSharedPointer<PersonalizationContext>& pContext);
29 };
30 
31 
32 } // namespace governikus
33 
34 #endif
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16