identt
ValidateService.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_STORE_VALIDATE_SERVICE_HPP_
34 #define _IDENTT_STORE_VALIDATE_SERVICE_HPP_
35 
36 #include <query/QueryBase.hpp>
37 #include <store/StoreBase.hpp>
38 
39 namespace identt {
40 namespace store {
41 
42 class ValidateService : public StoreBase {
43 public:
44 
45 
58  void RequestTokenAction(
59  ::identt::utils::SharedTable::pointer stptr, ::identt::query::RequestTokenDataT* rtoka);
60 
73  void SubmitTokenAction(
74  ::identt::utils::SharedTable::pointer stptr, ::identt::query::SubmitTokenDataT* stoka);
75 
76 private:
92  void PopulateAddress( ::identt::query::RequestTokenT* reqtok, const std::string& medium, std::string& address);
93 };
94 } // namespace store
95 } // namespace identt
96 
97 #endif // _IDENTT_STORE_VALIDATE_SERVICE_HPP_
98 
Definition: ValidateService.hpp:42
Definition: StoreBase.hpp:58
void SubmitTokenAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::SubmitTokenDataT *stoka)
SubmitTokenAction : Service Endpoint SubmitToken.
Definition: ValidateService.cc:154
Definition: CryptoBase.hpp:49
void RequestTokenAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::RequestTokenDataT *rtoka)
RequestTokenAction : Service Endpoint RequestToken.
Definition: ValidateService.cc:47