identt
BlobDataService.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_STORE_BLOBDATA_SERVICE_HPP_
34 #define _IDENTT_STORE_BLOBDATA_SERVICE_HPP_
35 
36 #include <query/QueryBase.hpp>
37 #include <store/StoreBase.hpp>
38 
39 namespace identt {
40 namespace store {
41 
42 class BlobDataService : public StoreBase {
43 public:
44 
57  void GetAccessKeyAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::GetAccessDataT* gva);
58 
71  void SetBlobDataAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::SetBlobDataT* bdata);
72 
85  void GetBlobDataAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::GetBlobDataT* bdata);
86 
87 private:
88 
89 };
90 } // namespace store
91 } // namespace identt
92 
93 #endif // _IDENTT_STORE_BLOBDATA_SERVICE_HPP_
94 
void GetAccessKeyAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::GetAccessDataT *gva)
GetAccessKeyAction : get the access key.
Definition: BlobDataService.cc:50
void SetBlobDataAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::SetBlobDataT *bdata)
SetBlobDataAction : set the access key.
Definition: BlobDataService.cc:108
void GetBlobDataAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::GetBlobDataT *bdata)
GetBlobDataAction : get the access key.
Definition: BlobDataService.cc:156
Definition: StoreBase.hpp:58
Definition: BlobDataService.hpp:42
Definition: CryptoBase.hpp:49