AusweisApp2
IfdEstablishContextResponse.h
gehe zur Dokumentation dieser Datei
1 
5 #pragma once
6 
8 
9 #include <QJsonObject>
10 #include <QString>
11 
12 
13 namespace governikus
14 {
16  : public RemoteMessageResponse
17 {
18  private:
19  QString mIfdName;
20 
21  public:
22  IfdEstablishContextResponse(const QString& pIfdName, ECardApiResult::Minor pResultMinor = ECardApiResult::Minor::null);
23  IfdEstablishContextResponse(const QJsonObject& pMessageObject);
24  virtual ~IfdEstablishContextResponse() override = default;
25 
26  const QString& getIfdName() const;
27  virtual QByteArray toByteArray(const QString& pContextHandle) const override;
28 };
29 
30 
31 } // namespace governikus
Definition: RemoteMessageResponse.h:13
virtual QByteArray toByteArray(const QString &pContextHandle) const override
Definition: IfdEstablishContextResponse.cpp:42
IfdEstablishContextResponse(const QString &pIfdName, ECardApiResult::Minor pResultMinor=ECardApiResult::Minor::null)
Definition: IfdEstablishContextResponse.cpp:22
const QString & getIfdName() const
Definition: IfdEstablishContextResponse.cpp:52
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:14
Minor
Definition: ECardApiResult.h:43
Definition: IfdEstablishContextResponse.h:15
virtual ~IfdEstablishContextResponse() override=default