af4765995d891489e6f92a4fd689e7cc4c757540
[platform/core/security/cynara.git] / src / common / response / ResponseTaker.cpp
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        src/common/response/ResponseTaker.cpp
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @version     1.0
20  * @brief       This file implements ResponseTaker class
21  */
22
23
24 #include <attributes/attributes.h>
25 #include <exceptions/NotImplementedException.h>
26
27 #include "ResponseTaker.h"
28
29 namespace Cynara {
30
31 void ResponseTaker::execute(RequestContextPtr context UNUSED,
32                             AdminCheckResponsePtr response UNUSED) {
33     throw NotImplementedException();
34 }
35
36 void ResponseTaker::execute(RequestContextPtr context UNUSED,
37                             AgentActionResponsePtr response UNUSED) {
38     throw NotImplementedException();
39 }
40
41 void ResponseTaker::execute(RequestContextPtr context UNUSED,
42                             AgentRegisterResponsePtr response UNUSED) {
43     throw NotImplementedException();
44 }
45
46 void ResponseTaker::execute(RequestContextPtr context UNUSED, CancelResponsePtr response UNUSED) {
47     throw NotImplementedException();
48 }
49
50 void ResponseTaker::execute(RequestContextPtr context UNUSED, CheckResponsePtr response UNUSED) {
51     throw NotImplementedException();
52 }
53
54 void ResponseTaker::execute(RequestContextPtr context UNUSED, CodeResponsePtr response UNUSED) {
55     throw NotImplementedException();
56 }
57
58 void ResponseTaker::execute(RequestContextPtr context UNUSED, ListResponsePtr response UNUSED) {
59     throw NotImplementedException();
60 }
61
62 } // namespace Cynara