replace : iotivity -> iotivity-sec
[platform/upstream/iotivity.git] / service / notification / android / notification-service / src / main / java / org / iotivity / service / ns / common / SyncInfo.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 SyncInfo object.
28  *
29  */
30 public class SyncInfo {
31
32     private static final String LOG_TAG = "NotificationService_SyncInfo";
33
34     /**
35      * This enum is used to inform about read status of notification message
36      */
37     public enum SyncType {
38         UNREAD(0),
39         READ(1),
40         DELETED(2);
41
42         private int type;
43
44         private SyncType(int type) {
45             this.type = type;
46         }
47
48         public int getSyncType() {
49             return this.type;
50         }
51     };
52
53     private long     mMessageId  = 0;
54     private String   mProviderId = null;
55     private SyncType mState      = SyncType.UNREAD;
56
57     public SyncInfo(long messageId, String providerId, SyncType state) {
58         Log.i(LOG_TAG, "SyncInfo()");
59
60         mMessageId = messageId;
61         mProviderId = providerId;
62         mState = state;
63     }
64
65     public long getMessageId() {
66         return mMessageId;
67     }
68
69     public String getProviderId() {
70         return mProviderId;
71     }
72
73     public SyncType getState() {
74         return mState;
75     }
76 }