Updating JNI modules of service provider
[platform/upstream/iotivity.git] / service / simulator / java / jni / simulator_resource_attributes_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_ATTRIBUTE_JNI_H_
22 #define SIMULATOR_RESOURCE_ATTRIBUTE_JNI_H_
23
24 #include <jni.h>
25 #include "simulator_resource_model.h"
26
27 class JniSimulatorResourceAttribute
28 {
29     public:
30         static jobject toJava(JNIEnv *env, jlong resource);
31 };
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 JNIEXPORT void JNICALL
38 Java_org_oic_simulator_SimulatorResourceAttribute_create
39 (JNIEnv *, jobject, jstring);
40
41 JNIEXPORT void JNICALL
42 Java_org_oic_simulator_SimulatorResourceAttribute_dispose
43 (JNIEnv *, jobject);
44
45 JNIEXPORT int JNICALL
46 Java_org_oic_simulator_SimulatorResourceAttribute_allowedValuesSize
47 (JNIEnv *, jobject);
48
49 JNIEXPORT jstring JNICALL
50 Java_org_oic_simulator_SimulatorResourceAttribute_valueToString
51 (JNIEnv *, jobject);
52
53 JNIEXPORT jstring JNICALL
54 Java_org_oic_simulator_SimulatorResourceAttribute_allowedValuesToString
55 (JNIEnv *, jobject);
56
57 JNIEXPORT jstring JNICALL
58 Java_org_oic_simulator_SimulatorResourceAttribute_getName
59 (JNIEnv *, jobject);
60
61 JNIEXPORT jobject JNICALL
62 Java_org_oic_simulator_SimulatorResourceAttribute_getValue
63 (JNIEnv *, jobject);
64
65 #ifdef __cplusplus
66 }
67 #endif
68
69 #endif //SIMULATOR_RESOURCE_ATTRIBUTE_JNI_H_