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 src/common/response/ResponseTaker.cpp
18 * @author Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
20 * @brief This file implements ResponseTaker class
24 #include <attributes/attributes.h>
25 #include <exceptions/NotImplementedException.h>
27 #include "ResponseTaker.h"
31 void ResponseTaker::execute(RequestContextPtr context UNUSED,
32 AdminCheckResponsePtr response UNUSED) {
33 throw NotImplementedException();
36 void ResponseTaker::execute(RequestContextPtr context UNUSED,
37 AgentActionResponsePtr response UNUSED) {
38 throw NotImplementedException();
41 void ResponseTaker::execute(RequestContextPtr context UNUSED,
42 AgentRegisterResponsePtr response UNUSED) {
43 throw NotImplementedException();
46 void ResponseTaker::execute(RequestContextPtr context UNUSED, CancelResponsePtr response UNUSED) {
47 throw NotImplementedException();
50 void ResponseTaker::execute(RequestContextPtr context UNUSED, CheckResponsePtr response UNUSED) {
51 throw NotImplementedException();
54 void ResponseTaker::execute(RequestContextPtr context UNUSED, CodeResponsePtr response UNUSED) {
55 throw NotImplementedException();
58 void ResponseTaker::execute(RequestContextPtr context UNUSED, ListResponsePtr response UNUSED) {
59 throw NotImplementedException();