From: Lukasz Wojciechowski Date: Fri, 18 Jul 2014 07:50:25 +0000 (+0200) Subject: Remove unused class BucketAlreadyExistsException X-Git-Tag: accepted/tizen/common/20140722.142604~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6ed07339fd87b9bec3750169ceeef82371b469ea;p=platform%2Fcore%2Fsecurity%2Fcynara.git Remove unused class BucketAlreadyExistsException Change-Id: I382d02081925d3eda9424e869e26ff0b921cba48 --- diff --git a/src/common/exceptions/BucketAlreadyExistsException.h b/src/common/exceptions/BucketAlreadyExistsException.h deleted file mode 100644 index 9fa7d6f..0000000 --- a/src/common/exceptions/BucketAlreadyExistsException.h +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -/* - * @file BucketAlreadyExistsException.h - * @author Aleksander Zdyb - * @version 1.0 - * @brief Implementation of BucketAlreadyExistsException - */ - -#ifndef SRC_COMMON_EXCEPTIONS_BUCKETALREADYEXISTSEXCEPTION_H_ -#define SRC_COMMON_EXCEPTIONS_BUCKETALREADYEXISTSEXCEPTION_H_ - -#include "Exception.h" -#include "types/PolicyBucketId.h" - -#include - -namespace Cynara { - -class BucketAlreadyExistsException : public Exception { -public: - BucketAlreadyExistsException() = delete; - BucketAlreadyExistsException(const PolicyBucketId &bucketId) : m_bucketId(bucketId) {} - virtual ~BucketAlreadyExistsException() = default; - - virtual const std::string message(void) const { - return "BucketAlreadyExistsException"; - } - -private: - PolicyBucketId m_bucketId; - -public: - const PolicyBucketId &bucketId() const { - return m_bucketId; - } -}; - -} /* namespace Cynara */ - -#endif // SRC_COMMON_EXCEPTIONS_BUCKETALREADYEXISTSEXCEPTION_H_ diff --git a/src/service/storage/Storage.cpp b/src/service/storage/Storage.cpp index 3792721..1b1a29a 100644 --- a/src/service/storage/Storage.cpp +++ b/src/service/storage/Storage.cpp @@ -26,7 +26,6 @@ #include "types/pointers.h" #include "types/PolicyType.h" #include "exceptions/NotImplementedException.h" -#include "exceptions/BucketAlreadyExistsException.h" #include "exceptions/DefaultBucketDeletionException.h" #include diff --git a/test/storage/inmemorystoragebackend/inmemorystoragebackend.cpp b/test/storage/inmemorystoragebackend/inmemorystoragebackend.cpp index bd682b3..34a3c42 100644 --- a/test/storage/inmemorystoragebackend/inmemorystoragebackend.cpp +++ b/test/storage/inmemorystoragebackend/inmemorystoragebackend.cpp @@ -28,7 +28,6 @@ #include "types/PolicyResult.h" #include "types/PolicyCollection.h" #include "exceptions/DefaultBucketDeletionException.h" -#include "exceptions/BucketAlreadyExistsException.h" #include "exceptions/BucketNotExistsException.h" #include "storage/StorageBackend.h" #include "storage/InMemoryStorageBackend.h" diff --git a/test/storage/storage/buckets.cpp b/test/storage/storage/buckets.cpp index c7d19ec..bbde254 100644 --- a/test/storage/storage/buckets.cpp +++ b/test/storage/storage/buckets.cpp @@ -30,7 +30,6 @@ #include "types/PolicyCollection.h" #include "types/pointers.h" #include "exceptions/DefaultBucketDeletionException.h" -#include "exceptions/BucketAlreadyExistsException.h" #include "storage/Storage.h" #include "storage/StorageBackend.h" diff --git a/test/storage/storage/check.cpp b/test/storage/storage/check.cpp index c91cd1f..492e7fb 100644 --- a/test/storage/storage/check.cpp +++ b/test/storage/storage/check.cpp @@ -29,7 +29,6 @@ #include "types/PolicyCollection.h" #include "types/pointers.h" #include "exceptions/DefaultBucketDeletionException.h" -#include "exceptions/BucketAlreadyExistsException.h" #include "storage/Storage.h" #include "storage/StorageBackend.h" diff --git a/test/storage/storage/policies.cpp b/test/storage/storage/policies.cpp index d43d918..8fcf900 100644 --- a/test/storage/storage/policies.cpp +++ b/test/storage/storage/policies.cpp @@ -29,7 +29,6 @@ #include "types/PolicyCollection.h" #include "types/pointers.h" #include "exceptions/DefaultBucketDeletionException.h" -#include "exceptions/BucketAlreadyExistsException.h" #include "storage/Storage.h" #include "storage/StorageBackend.h"