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 / common / Topic.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.common;
22 import android.util.Log;
23 /**
24   * @class   Topic
25   * @brief   This class provides implementation of Notification Topic object.
26   */
27 public class Topic
28 {
29     private static final String LOG_TAG = "NotificationService_Topic";
30
31     public enum TopicState
32     {
33         UNSUBSCRIBED (0),
34         SUBSCRIBED (1);
35         private int type;
36
37         private TopicState(int type)
38         {
39             this.type = type;
40         }
41
42         public int getTopicState()
43         {
44             return this.type;
45         }
46
47     };
48     public String mTopicName    = null;
49     public TopicState mState    = TopicState.UNSUBSCRIBED;
50
51     public Topic(String topicName, TopicState state)
52     {
53         Log.i (LOG_TAG, "Topic()");
54
55         mTopicName = topicName;
56         mState = state;
57     }
58
59     public String getTopicName()
60     {
61         return mTopicName;
62     }
63
64     public void setTopicName(String topicName)
65     {
66         mTopicName = topicName;
67     }
68
69     public TopicState getState()
70     {
71         return mState;
72     }
73
74     public void setState(TopicState state)
75     {
76         mState = state;
77     }
78
79 }