Rule management added.
[platform/core/security/suspicious-activity-monitor.git] / daemon / reportadapter.h
1 /**
2  * Samsung Ukraine R&D Center (SRK under a contract between)
3  * LLC "Samsung Electronics Co", Ltd (Seoul, Republic of Korea)
4  * Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License
17  */
18 /**
19  * @file   reportadapter.cpp
20  * @brief  Report adapter
21  * @date   Created Feb 28, 2018
22  * @author Mail to: <A HREF="mailto:d.lomtev@samsung.com">Dmytro Lomtev, d.lomtev@samsung.com</A>
23  */
24 #ifndef REPORTADAPTER_H
25 #define REPORTADAPTER_H
26
27 #include "ireporter.h"
28 #include "connection.h"
29
30 namespace agent
31 {
32
33 /**
34  * @brief Abstract class that provides send report interface
35  */
36 class ReportAdapter: public IReporter
37 {
38 public:
39     /**
40      * @brief Constructor
41      * @param conn reference to Connection instance
42      */
43     ReportAdapter(communication::Connection& conn);
44
45     /**
46      * @brief sendReport sends report to the server
47      * @param module name of the module that wants to report
48      * @param content report content
49      */
50     void sendReport(const std::string& module, const Json::Value& content) override;
51
52 private:
53     communication::Connection& connection;
54 };
55
56 } // namespace agent
57
58 #endif // REPORTADAPTER_H