1 //******************************************************************
3 // Copyright 2016 Samsung Electronics All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
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
11 // http://www.apache.org/licenses/LICENSE-2.0
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.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20 package org.iotivity.service.ns.provider;
21 import org.iotivity.service.ns.common.*;
22 import java.util.Vector;
25 * @brief This class provides implementation of Notification Consumer object.
30 public String mConsumerId = null;
32 public Consumer(final String consumerId)
34 mConsumerId = consumerId;
36 public String getConsumerId( )
40 public int AcceptSubscription(Consumer consumer, boolean accepted) throws NSException
43 return nativeAcceptSubscription(consumer, accepted);
47 public int SelectTopic(String topicName) throws NSException
49 return nativeSelectTopic(mConsumerId, topicName);
51 public int UnselectTopic(String topicName) throws NSException
53 return nativeUnselectTopic(mConsumerId, topicName);
56 public TopicsList GetConsumerTopics() throws NSException
58 return nativeGetConsumerTopics(mConsumerId);
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);