Updated JAVA and JNI API's for Topic Resource
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / java / org / iotivity / service / ns / provider / Consumer.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 package org.iotivity.service.ns.provider;
21 import org.iotivity.service.ns.common.*;
22 import java.util.Vector;
23 /**
24   * @class   Consumer
25   * @brief   This class provides implementation of Notification Consumer object.
26   */
27 public class Consumer
28 {
29
30     public String mConsumerId = null;
31
32     public Consumer(final String consumerId)
33     {
34         mConsumerId = consumerId;
35     }
36     public String getConsumerId( )
37     {
38         return mConsumerId;
39     }
40     public int AcceptSubscription(Consumer consumer, boolean accepted) throws NSException
41     {
42         if (consumer != null)
43             return nativeAcceptSubscription(consumer, accepted);
44         return -1;
45     }
46
47     public int SelectTopic(String topicName) throws NSException
48     {
49         return nativeSelectTopic(mConsumerId, topicName);
50     }
51     public int UnselectTopic(String topicName) throws NSException
52     {
53         return nativeUnselectTopic(mConsumerId, topicName);
54     }
55
56     public TopicsList GetConsumerTopics() throws NSException
57     {
58         return nativeGetConsumerTopics(mConsumerId);
59     }
60
61     public native int  nativeAcceptSubscription(Consumer consumer, boolean accepted);
62     public native int  nativeSelectTopic(String consumerId, String topicName);
63     public native int  nativeUnselectTopic(String consumerId, String topicName);
64     public native TopicsList  nativeGetConsumerTopics(String consumerId);
65 }