Imported Upstream version 1.0.0
[platform/upstream/iotivity.git] / service / resource-container / android / resource-container / src / main / jni / JniRcsBundleInfo.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   jni_re_rcs_bundle_info.h
22  *
23  * @brief This file contains the JniBundleInfo class
24  *               & declaration of RCSBundleInfo APIs for JNI implementation
25  */
26
27 #ifndef JNI_RCS_BUNDLE_INFO_H_
28 #define JNI_RCS_BUNDLE_INFO_H_
29
30 #include <jni.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 JNIEXPORT jstring JNICALL
37 Java_org_iotivity_service_resourcecontainer_RcsBundleInfo_nativeGetID
38 (JNIEnv *, jobject);
39
40 JNIEXPORT jstring JNICALL
41 Java_org_iotivity_service_resourcecontainer_RcsBundleInfo_nativeGetPath
42 (JNIEnv *, jobject);
43
44 JNIEXPORT jstring JNICALL
45 Java_org_iotivity_service_resourcecontainer_RcsBundleInfo_nativeGetActivatorName
46 (JNIEnv *, jobject);
47
48 JNIEXPORT jstring JNICALL
49 Java_org_iotivity_service_resourcecontainer_RcsBundleInfo_nativeGetLibraryPath
50 (JNIEnv *, jobject);
51
52 JNIEXPORT jstring JNICALL
53 Java_org_iotivity_service_resourcecontainer_RcsBundleInfo_nativeGetVersion
54 (JNIEnv *, jobject);
55
56 #ifdef __cplusplus
57 }
58 #endif
59 #endif // JNI_RCS_BUNDLE_INFO_H_
60