[Mediator]Java SDK for the new C++ APIs
[platform/upstream/iotivity.git] / service / easy-setup / sdk / mediator / android / richsdk / jni / JniEasySetup.h
1 /******************************************************************
2  *
3  * Copyright 2015 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  * @param ip - ip address of Enrollee
51  * @param ssid - ssid of the Enroller
52  * @param password - password of the enroller
53  * @param connectivityType - Connectivity Type
54  * @param needSecuredEasysetup - need secured easy setup or not
55  *
56  * @return jobject - RemoteEnrolleee
57  */
58 JNIEXPORT jobject JNICALL
59 Java_org_iotivity_service_easysetup_mediator_EasySetupService_nativeCreateEnrolleeDevice
60 (JNIEnv *env, jobject interfaceClass, jstring ip, jstring ssid, jstring password,
61  jint connectivityType, jboolean needSecuredEasysetup);
62
63 #ifdef __cplusplus
64 }
65 #endif
66 #endif // __JNI_ES_EASYSETUP_H