summaryrefslogtreecommitdiffstats
path: root/src/com/android/bluetooth/map/MapUtils/MsgListingConsts.java
blob: a9dccd6d57a61c004916fdc1081b65e84377dc2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/*
 * Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *        * Redistributions of source code must retain the above copyright
 *          notice, this list of conditions and the following disclaimer.
 *        * Redistributions in binary form must reproduce the above copyright
 *          notice, this list of conditions and the following disclaimer in the
 *          documentation and/or other materials provided with the distribution.
 *        * Neither the name of Code Aurora nor
 *          the names of its contributors may be used to endorse or promote
 *          products derived from this software without specific prior written
 *          permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NON-INFRINGEMENT ARE DISCLAIMED.    IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package com.android.bluetooth.map.MapUtils;

public class MsgListingConsts {

	public class MsgInfo {
        public String dateTime = null;

        public String getDateTime() {
            return dateTime;
        }

        public void setDateTime(String dateTime) {
            this.dateTime = dateTime;
        }

    }
    public MsgInfo msgInfo = new MsgInfo();

    public int msg_handle = 0;
    public String subject = null;
    public boolean  sendSubject = false;
    public String datetime = null;
    public String sender_name = null;
    public String sender_addressing = null;
    public String recepient_name = null;
    public boolean sendRecipient_addressing = false;
    public String recepient_addressing = null;
    public String type = null;
    public int size = 0;
    public String reception_status = null;
    public int attachment_size = -1;
    public String contains_text = null;
    public String priority = null;
    public String read = null;
    public String sent = null;
    public String msg_protected = null;
    public String replyto_addressing = null;

    public int getMsg_handle() {
        return msg_handle;
    }

    public void setMsg_handle(int msg_handle) {
        this.msg_handle = msg_handle;
    }

    public String getSubject() {
        return subject;
    }

    public void setSubject(String subject) {
        this.subject = subject;
    }

    public void setSendSubject(boolean flag) {
        this.sendSubject = flag;
    }

    public String getDatetime() {
        return datetime;
    }

    public void setDatetime(String datetime) {
        this.datetime = datetime;
    }

    public String getSender_name() {
        return sender_name;
    }

    public void setSender_name(String sender_name) {
        this.sender_name = sender_name;
    }

    public String getSender_addressing() {
        return sender_addressing;
    }

    public void setSender_addressing(String sender_addressing) {
        this.sender_addressing = sender_addressing;
    }

    public String getRecepient_name() {
        return recepient_name;
    }

    public void setRecepient_name(String recepient_name) {
        this.recepient_name = recepient_name;
    }

    public String getRecepient_addressing() {
        return recepient_addressing;
    }

    public void setSendRecipient_addressing(boolean flag) {
        this.sendRecipient_addressing = flag;
    }


    public void setRecepient_addressing(String recepient_addressing) {
        this.recepient_addressing = recepient_addressing;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public int getSize() {
        return size;
    }

    public void setSize(int size) {
        this.size = size;
    }

    public String getReception_status() {
        return reception_status;
    }

    public void setReception_status(String reception_status) {
        this.reception_status = reception_status;
    }

    public int getAttachment_size() {
        return attachment_size;
    }

    public void setAttachment_size(int attachment_size) {
        this.attachment_size = attachment_size;
    }

    public String getContains_text() {
        return contains_text;
    }

    public void setContains_text(String contains_text) {
        this.contains_text = contains_text;
    }

    public String getPriority() {
        return priority;
    }

    public void setPriority(String priority) {
        this.priority = priority;
    }

    public String getRead() {
        return read;
    }

    public void setRead(String read) {
        this.read = read;
    }

    public void setSent(String sent) {
        this.sent = sent;
    }

    public String getSent() {
        return sent;
    }

    public String getMsg_protected() {
        return msg_protected;
    }

    public void setMsg_protected(String msg_protected) {
        this.msg_protected = msg_protected;
    }

    public String getReplyTo_addressing() {
        return sender_addressing;
    }

    public void setReplyTo_addressing(String replyto_addressing) {
        this.replyto_addressing = replyto_addressing;
    }

}