03135c7ff65ad76818082964452161ba83cd8602
[platform/core/security/cynara.git] / src / common / request / CheckRequest.h
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        CheckRequest.h
18  * @author      Lukasz Wojciechowski <l.wojciechow@partner.samsung.com>
19  * @version     1.0
20  * @brief       This file defines check request class
21  */
22
23 #ifndef SRC_COMMON_REQUEST_CHECKREQUEST_H_
24 #define SRC_COMMON_REQUEST_CHECKREQUEST_H_
25
26 #include <types/PolicyKey.h>
27
28 #include <request/pointers.h>
29 #include <request/Request.h>
30 #include <request/RequestTaker.h>
31
32 namespace Cynara {
33
34 class CheckRequest : public Request {
35 private:
36     PolicyKey m_key;
37
38 public:
39     CheckRequest(const PolicyKey &key, ProtocolFrameSequenceNumber sequenceNumber) :
40         Request(sequenceNumber), m_key(key) {
41     }
42
43     virtual ~CheckRequest() = default;
44
45     const PolicyKey &key(void) const {
46         return m_key;
47     }
48
49     virtual void execute(RequestPtr self, RequestTakerPtr taker, RequestContextPtr context) const;
50 };
51
52 } // namespace Cynara
53
54 #endif /* SRC_COMMON_REQUEST_CHECKREQUEST_H_ */