Add Android Notification APIs for Consumer service
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / java / org / iotivity / service / ns / consumer / NSMessage.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.consumer;
22
23 import android.util.Log;
24
25 public class NSMessage {
26
27     private static final String LOG_TAG = "ConsumerService_NSMessage";
28
29     long messageId                     = 0;
30     String providerId                  = null;
31
32     String title                       = null;
33     String contentText                 = null;
34     String sourceName                  = null;
35
36     private long mNativeHandle         = 0;
37
38     public NSMessage(long messageId, String providerId, String title,
39         String contentText, String sourceName, long mNativeHandle) {
40
41         Log.i (LOG_TAG, "NSMessage()");
42
43         this.messageId = messageId;
44         this.providerId = providerId;
45         this.title = title;
46         this.contentText = contentText;
47         this.sourceName = sourceName;
48
49         this.mNativeHandle = mNativeHandle;
50     }
51
52     public long getMessageId() {
53         return messageId;
54     }
55
56     public String getProviderId() {
57         return providerId;
58     }
59
60     public String getTitle() {
61         return title;
62     }
63
64     public String getContentText() {
65         return contentText;
66     }
67
68     public String getSource() {
69         return sourceName;
70     }
71 }