2 * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * @file StorageBackend.h
18 * @author Aleksander Zdyb <a.zdyb@partner.samsung.com>
20 * @brief Headers for StorageBackend base class
23 #ifndef STORAGEBACKEND_H_
24 #define STORAGEBACKEND_H_
27 #include "types/pointers.h"
28 #include "types/PolicyBucket.h"
29 #include "types/PolicyBucketId.h"
37 class StorageBackend {
39 virtual ~StorageBackend() {}
41 virtual PolicyBucket searchDefaultBucket(const PolicyKey &key) = 0;
42 virtual PolicyBucket searchBucket(const PolicyBucketId &bucket, const PolicyKey &key) = 0;
44 virtual void insertPolicy(const PolicyBucketId &bucket, PolicyPtr policy) = 0;
46 virtual void createBucket(const PolicyBucketId &bucketId, const PolicyResult &defaultPolicy) = 0;
47 virtual void deleteBucket(const PolicyBucketId &bucketId) = 0;
49 virtual void deletePolicy(const PolicyBucketId &bucketId, const PolicyKey &key) = 0;
50 virtual void deleteLinking(const PolicyBucketId &bucket) = 0;
53 } /* namespace Cynara */
54 #endif /* STORAGEBACKEND_H_ */