AusweisApp
 
Lade ...
Suche ...
Keine Treffer
StatePreVerification.h
gehe zur Dokumentation dieser Datei
1
4
5#pragma once
6
7#include "AbstractState.h"
10
11#include <QDateTime>
12
13
14namespace governikus
15{
16
17class StatePreVerification
18 : public AbstractState
19 , public GenericContextContainer<AuthContext>
20{
21 Q_OBJECT
22 friend class StateBuilder;
23 friend class ::test_StatePreVerification;
24
25 private:
26 const QList<QSharedPointer<const CVCertificate>> mTrustedCvcas;
27 const QDateTime mValidationDateTime;
28
29 explicit StatePreVerification(const QSharedPointer<WorkflowContext>& pContext);
30 void run() override;
31
32 bool isValid(const QList<QSharedPointer<const CVCertificate>>& pCertificates) const;
33 void saveCvcaLinkCertificates(const QList<QSharedPointer<const CVCertificate>>& pCertificates) const;
34};
35
36} // namespace governikus
AbstractState(const QSharedPointer< WorkflowContext > &pContext)
Definition AbstractState.cpp:22
GenericContextContainer(const QSharedPointer< WorkflowContext > &pContext)
Definition GenericContextContainer.h:20
friend class StateBuilder
Definition StatePreVerification.h:22
Defines the AccessRight and AccessRole enum.
Definition CommandApdu.h:17