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