Merge branch 'notification-service'
[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
37     public String getConsumerId( )
38     {
39         return mConsumerId;
40     }
41
42     public int acceptSubscription(boolean accepted) throws NSException
43     {
44         return nativeAcceptSubscription(mConsumerId, accepted);
45     }
46
47     public int setTopic(String topicName) throws NSException
48     {
49         return nativeSetConsumerTopic(mConsumerId, topicName);
50     }
51
52     public int unsetTopic(String topicName) throws NSException
53     {
54         return nativeUnsetConsumerTopic(mConsumerId, topicName);
55     }
56
57     public TopicsList getConsumerTopicList() throws NSException
58     {
59         return nativeGetConsumerTopicList(mConsumerId);
60     }
61
62     public native int  nativeAcceptSubscription(String  consumerId, boolean accepted) throws NSException;
63     public native int  nativeSetConsumerTopic(String consumerId, String topicName) throws NSException;
64     public native int  nativeUnsetConsumerTopic(String consumerId, String topicName) throws NSException;
65     public native TopicsList  nativeGetConsumerTopicList(String consumerId) throws NSException;
66 }