Merge notification service from master branch
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / jni / provider / JniNotificationProvider.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 #include "JniNotificationCommon.h"
22
23 #ifndef JNI_NOTIFICATION_PROVIDER_H
24 #define JNI_NOTIFICATION_PROVIDER_H
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 /*
31  * Class:     org_iotivity_service_ns_provider_ProviderService
32  * Method:    nativeStart
33  * Signature: (Lorg/iotivity/service/ns/provider/ProviderService/OnConsumerSubscribedListener;Lorg/iotivity/service/ns/provider/ProviderService/OnMessageSynchronizedListener;ZLjava/lang/String;Z)I
34  */
35 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeStart
36 (JNIEnv *, jobject, jobject, jobject, jboolean, jstring, jboolean);
37
38 /*
39  * Class:     org_iotivity_service_ns_provider_ProviderService
40  * Method:    nativeStop
41  * Signature: ()I
42  */
43 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeStop
44 (JNIEnv *, jobject);
45
46 /*
47  * Class:     org_iotivity_service_ns_provider_ProviderService
48  * Method:    nativeSendMessage
49  * Signature: (Lorg/iotivity/service/ns/common/Message;)I
50  */
51 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeSendMessage
52 (JNIEnv *, jobject, jobject);
53
54 /*
55  * Class:     org_iotivity_service_ns_provider_ProviderService
56  * Method:    nativeSendSyncInfo
57  * Signature: (JI)V
58  */
59 JNIEXPORT void JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeSendSyncInfo
60 (JNIEnv *, jobject, jlong, jint);
61
62 /*
63  * Class:     org_iotivity_service_ns_provider_ProviderService
64  * Method:    nativeCreateMessage
65  * Signature: ()Lorg/iotivity/service/ns/common/Message;
66  */
67 JNIEXPORT jobject JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeCreateMessage
68 (JNIEnv *, jobject);
69
70 /*
71  * Class:     org_iotivity_service_ns_provider_ProviderService
72  * Method:    nativeEnableRemoteService
73  * Signature: (Ljava/lang/String;)I
74  */
75 JNIEXPORT jint JNICALL
76 Java_org_iotivity_service_ns_provider_ProviderService_nativeEnableRemoteService
77 (JNIEnv *, jobject, jstring);
78
79 /*
80  * Class:     org_iotivity_service_ns_provider_ProviderService
81  * Method:    nativeDisableRemoteService
82  * Signature: (Ljava/lang/String;)I
83  */
84 JNIEXPORT jint JNICALL
85 Java_org_iotivity_service_ns_provider_ProviderService_nativeDisableRemoteService
86 (JNIEnv *, jobject, jstring);
87
88 /*
89  * Class:     org_iotivity_service_ns_provider_ProviderService
90  * Method:    nativeRegisterTopic
91  * Signature: (Ljava/lang/String;)I
92  */
93 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeRegisterTopic
94 (JNIEnv *, jobject, jstring);
95
96 /*
97  * Class:     org_iotivity_service_ns_provider_ProviderService
98  * Method:    nativeUnregisterTopic
99  * Signature: (Ljava/lang/String;)I
100  */
101 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_ProviderService_nativeUnregisterTopic
102 (JNIEnv *, jobject, jstring);
103
104 /*
105  * Class:     org_iotivity_service_ns_provider_ProviderService
106  * Method:    nativeGetRegisteredTopicList
107  * Signature: ()Lorg/iotivity/service/ns/common/TopicsList;
108  */
109 JNIEXPORT jobject JNICALL
110 Java_org_iotivity_service_ns_provider_ProviderService_nativeGetRegisteredTopicList
111 (JNIEnv *, jobject);
112
113 /*
114  * Class:     org_iotivity_service_ns_provider_Consumer
115  * Method:    nativeAcceptSubscription
116  * Signature: (Ljava/lang/String;Z)I
117  */
118 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_Consumer_nativeAcceptSubscription
119 (JNIEnv *, jobject, jstring, jboolean);
120
121 /*
122  * Class:     org_iotivity_service_ns_provider_Consumer
123  * Method:    nativeSetConsumerTopic
124  * Signature: (Ljava/lang/String;Ljava/lang/String;)I
125  */
126 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_Consumer_nativeSetConsumerTopic
127 (JNIEnv *, jobject, jstring, jstring);
128
129 /*
130  * Class:     org_iotivity_service_ns_provider_Consumer
131  * Method:    nativeUnsetConsumerTopic
132  * Signature: (Ljava/lang/String;Ljava/lang/String;)I
133  */
134 JNIEXPORT jint JNICALL Java_org_iotivity_service_ns_provider_Consumer_nativeUnsetConsumerTopic
135 (JNIEnv *, jobject, jstring, jstring);
136
137 /*
138  * Class:     org_iotivity_service_ns_provider_Consumer
139  * Method:    nativeGetConsumerTopicList
140  * Signature: (Ljava/lang/String;)Lorg/iotivity/service/ns/common/TopicsList;
141  */
142 JNIEXPORT jobject JNICALL
143 Java_org_iotivity_service_ns_provider_Consumer_nativeGetConsumerTopicList
144 (JNIEnv *, jobject, jstring);
145
146 #ifdef __cplusplus
147 }
148 #endif
149 #endif
150
151