/* * Copyright 2012 Tallinn University Centre for Educational Technology * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ee.htk.dippler.app.service; import android.os.Parcel; import android.os.Parcelable; public class SessionObject implements Parcelable { private String id = null; private int status = 0; public String getId() { return id; } public void setId(String id) { this.id = id; } public int getStatus() { return status; } public void setStatus(String status) { try { this.status = Integer.parseInt(status); } catch(NumberFormatException e) { e.printStackTrace(); } } @Override public int describeContents() { // TODO Auto-generated method stub return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(id); } public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { public SessionObject createFromParcel(Parcel in) { return new SessionObject(in); } public SessionObject[] newArray(int size) { return new SessionObject[size]; } }; private SessionObject(Parcel in) { id = in.readString(); } public SessionObject() { } }