Merge branch 'cloud-interface'
[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 /**
23   * @class   Consumer
24   * @brief   This class provides implementation of Notification Consumer object.
25   */
26 public class Consumer
27 {
28     public native int  nativeAcceptSubscription(Consumer consumer, boolean accepted);
29
30     public String mConsumerId;
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 }