Merge branch 'cloud-interface'
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / java / org / iotivity / service / ns / consumer / ConsumerService.java
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 package org.iotivity.service.ns.consumer;
22
23 import android.util.Log;
24
25 public class ConsumerService {
26
27     private static final String LOG_TAG = "ConsumerService";
28
29     static {
30         System.loadLibrary("notification_consumer_jni");
31     }
32
33     public ConsumerService() {
34         Log.i (LOG_TAG, "ConsumerService()");
35     }
36
37     public native void Start (
38             OnProviderDiscoveredListner onProviderDiscoveredListner,
39             OnSubscriptionAcceptedListener onSubscriptionAcceptedListener
40             ) throws NSException;
41     public native void Stop () throws NSException;
42     public native void RescanProvider() throws NSException;
43     public native NSProvider GetProvider(String providerId) throws NSException;
44
45     public interface OnProviderDiscoveredListner {
46         public void onProviderDiscovered(NSProvider provider);
47     }
48
49     public interface OnSubscriptionAcceptedListener {
50         public void onSubscriptionAccepted(NSProvider provider);
51     }
52
53     public interface OnMessageReceivedListner {
54         public void onMessageReceived(NSMessage message);
55     }
56
57     public interface OnSyncInfoReceivedListner {
58         public void onSyncInfoReceived(NSSyncInfo sync);
59     }
60 }
61