172504995d45251b8113540ab888fe6930c6e8e3
[platform/core/security/cynara.git] / src / common / request / RequestTaker.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        RequestTaker.cpp
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @author      Adam Malinowski <a.malinowsk2@partner.samsung.com>
20  * @version     1.0
21  * @brief       This file implements RequestTaker class
22  */
23
24 #include <attributes/attributes.h>
25 #include <exceptions/NotImplementedException.h>
26 #include <request/CheckRequest.h>
27 #include <request/RequestContext.h>
28
29 #include "RequestTaker.h"
30
31 namespace Cynara {
32
33 void RequestTaker::execute(RequestContextPtr context UNUSED, CheckRequestPtr request UNUSED) {
34     throw NotImplementedException();
35 }
36
37 } // namespace Cynara