43202a3975522bdf5d1cf4eca2f5109710af741a
[platform/upstream/iotivity.git] / service / simulator / java / jni / simulator_resource_model_jni.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 #ifndef SIMULATOR_RESOURCE_MODEL_JNI_H_
22 #define SIMULATOR_RESOURCE_MODEL_JNI_H_
23
24 #include <jni.h>
25 #include "simulator_resource_model.h"
26
27 class JniSimulatorResourceModel
28 {
29
30     public:
31         JniSimulatorResourceModel(SimulatorResourceModel);
32
33         static jobject toJava(JNIEnv *, jlong);
34         static bool getResourceModel(JNIEnv *env, jobject thiz, SimulatorResourceModel &resourceModel);
35     private:
36         SimulatorResourceModel m_resourceModel;
37 };
38
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 JNIEXPORT jint JNICALL
45 Java_org_iotivity_simulator_SimulatorResourceModel_size
46 (JNIEnv *, jobject);
47
48 JNIEXPORT jobject JNICALL
49 Java_org_iotivity_simulator_SimulatorResourceModel_getAttributes
50 (JNIEnv *, jobject);
51
52 JNIEXPORT jobject JNICALL
53 Java_org_iotivity_simulator_SimulatorResourceModel_getAttribute
54 (JNIEnv *, jobject, jstring);
55
56 JNIEXPORT jobjectArray JNICALL
57 Java_org_iotivity_simulator_SimulatorResourceModel_getAllowedValues
58 (JNIEnv *, jobject, jstring);
59
60 JNIEXPORT void JNICALL
61 Java_org_iotivity_simulator_SimulatorResourceModel_dispose
62 (JNIEnv *, jobject);
63
64
65 #ifdef __cplusplus
66 }
67 #endif
68
69 #endif