tizen 2.4 release
[framework/context/context-service.git] / src / context_trigger / fact.h
1 /*
2  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
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 #ifndef __CONTEXT_CONTEXT_TRIGGER_FACT_H__
18 #define __CONTEXT_CONTEXT_TRIGGER_FACT_H__
19
20 #include <string>
21 #include <json.h>
22
23 namespace ctx {
24
25         class context_fact {
26                 private:
27                         int req_id;
28                         int error;
29                         std::string subject;
30                         ctx::json option;
31                         ctx::json data;
32
33                 public:
34                         context_fact();
35                         context_fact(int id, int err, const char* s, ctx::json& o, ctx::json& d);
36                         ~context_fact();
37
38                         void set_req_id(int id);
39                         void set_error(int err);
40                         void set_subject(const char* s);
41                         void set_option(ctx::json& o);
42                         void set_data(ctx::json& d);
43
44                         int get_req_id();
45                         int get_error();
46                         const char* get_subject();
47                         ctx::json& get_option();
48                         ctx::json& get_data();
49         };
50
51 }       /* namespace ctx */
52
53 #endif  /* End of __CONTEXT_CONTEXT_TRIGGER_FACT_H__ */