blob: 7590c8082e31c3ba66b12bb1c3c13393faf196b8 [file] [log] [blame]
Alexandre Lisiona8b78722013-12-13 10:18:33 -05001/*
Alexandre Lisionc1024c02014-01-06 11:12:53 -05002 * Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
Alexandre Lisiona8b78722013-12-13 10:18:33 -05003 *
4 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Additional permission under GNU GPL version 3 section 7:
21 *
22 * If you modify this program, or any covered work, by linking or
23 * combining it with the OpenSSL project's OpenSSL library (or a
24 * modified version of that library), containing parts covered by the
25 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26 * grants you additional permission to convey the resulting work.
27 * Corresponding Source for a non-source form of such a combination
28 * shall include the source code for the parts of OpenSSL used as well
29 * as that of the covered work.
30 */
Alexandre Lision666b3772013-10-28 17:42:48 -040031package org.sflphone.model;
32
Alexandre Lisiond5686032013-10-29 11:09:21 -040033import android.os.Parcel;
34import android.os.Parcelable;
35
36public class SipMessage implements Parcelable {
37 public boolean left;
38 public String comment;
39
40 public SipMessage(boolean left, String comment) {
41 super();
42 this.left = left;
43 this.comment = comment;
44 }
45
46 @Override
47 public int describeContents() {
48 return 0;
49 }
50
51 @Override
52 public void writeToParcel(Parcel out, int flags) {
53 out.writeByte((byte) (left ? 1 : 0));
54 out.writeString(comment);
55 }
56
57 public static final Parcelable.Creator<SipMessage> CREATOR = new Parcelable.Creator<SipMessage>() {
58 public SipMessage createFromParcel(Parcel in) {
59 return new SipMessage(in);
60 }
61
62 public SipMessage[] newArray(int size) {
63 return new SipMessage[size];
64 }
65 };
66
67 private SipMessage(Parcel in) {
68 left = (in.readByte() == 1) ? true : false;
69 comment = in.readString();
70 }
Alexandre Lision666b3772013-10-28 17:42:48 -040071
72}