06a3a74bd52545201de9197889da1efa7f545d56
[platform/core/security/cynara.git] / src / service / storage / StorageBackend.h
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        StorageBackend.h
18  * @author      Aleksander Zdyb <a.zdyb@partner.samsung.com>
19  * @version     1.0
20  * @brief       Headers for StorageBackend base class
21  */
22
23 #ifndef STORAGEBACKEND_H_
24 #define STORAGEBACKEND_H_
25
26
27 #include "types/pointers.h"
28 #include "types/PolicyBucket.h"
29 #include "types/PolicyBucketId.h"
30
31 #include <memory>
32
33 namespace Cynara {
34
35 class PolicyKey;
36
37 class StorageBackend {
38 public:
39     virtual ~StorageBackend() {}
40
41     virtual PolicyBucket searchDefaultBucket(const PolicyKey &key) = 0;
42     virtual PolicyBucket searchBucket(const PolicyBucketId &bucket, const PolicyKey &key) = 0;
43
44     virtual void insertPolicy(const PolicyBucketId &bucket, PolicyPtr policy) = 0;
45
46     virtual void createBucket(const PolicyBucketId &bucketId, const PolicyResult &defaultPolicy) = 0;
47     virtual void deleteBucket(const PolicyBucketId &bucketId) = 0;
48
49     virtual void deletePolicy(const PolicyBucketId &bucketId, const PolicyKey &key) = 0;
50     virtual void deleteLinking(const PolicyBucketId &bucket) = 0;
51 };
52
53 } /* namespace Cynara */
54 #endif /* STORAGEBACKEND_H_ */