Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / service / easy-setup / mediator / richsdk / android / EasySetupCore / src / main / jni / JniEasySetup.h
1 /******************************************************************
2  *
3  * Copyright 2016 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 /** @file   JniEasySetup.h
22  *
23  *   @brief  This file contains native API for creating RemoteEnrollee Device
24  */
25
26 #ifndef __JNI_ES_EASYSETUP_H
27 #define __JNI_ES_EASYSETUP_H
28
29 #include <jni.h>
30
31 #include "EasySetup.h"
32 #include "RemoteEnrollee.h"
33 #include "ESException.h"
34 #include "oic_string.h"
35
36 #include "JniJvm.h"
37 #include "JniEasySetup.h"
38 #include "JniRemoteEnrollee.h"
39 #include "JniEsUtils.h"
40
41 using namespace OIC::Service;
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 /**
48  * API for creating and returning the RemoteEnrollee object to Java Layer
49  *
50  * @return jobject - RemoteEnrolleee
51  */
52 JNIEXPORT jobject JNICALL
53 Java_org_iotivity_service_easysetup_mediator_EasySetup_nativeCreateRemoteEnrollee
54 (JNIEnv *env, jobject thiz, jobject jResource);
55
56
57 #ifdef __cplusplus
58 }
59 #endif
60 #endif // __JNI_ES_EASYSETUP_H