[Iotcon] Stubs of JS interface (only Resource is missing).
[platform/core/api/webapi-plugins.git] / src / iotcon / iotcon_extension.cc
1 /*
2  * Copyright (c) 2016 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 #include "iotcon/iotcon_extension.h"
18
19 #include "iotcon/iotcon_instance.h"
20
21 // This will be generated from iotcon_api.js
22 extern const char kSource_iotcon_api[];
23
24 namespace extension {
25 namespace iotcon {
26
27 IotconExtension::IotconExtension() {
28   SetExtensionName("tizen.iotcon");
29   SetJavaScriptAPI(kSource_iotcon_api);
30
31   const char* entry_points[] = {
32     "tizen.IotconOption",
33     "tizen.Query",
34     "tizen.QueryFilter",
35     "tizen.Representation",
36     "tizen.Response",
37     "tizen.State",
38     nullptr
39   };
40   SetExtraJSEntryPoints(entry_points);
41 }
42
43 IotconExtension::~IotconExtension() {
44 }
45
46 common::Instance* IotconExtension::CreateInstance() {
47   return new IotconInstance();
48 }
49
50 }  // namespace iotcon
51 }  // namespace extension
52
53 common::Extension* CreateExtension() {
54   return new extension::iotcon::IotconExtension();
55 }