// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.communication.requests; import android.os.Parcel; import android.os.Parcelable; import com.olio.communication.messages.MessagePayload; import java.io.Serializable; public class DeviceStatusRequest extends MessagePayload implements Parcelable, Serializable { public static final android.os.Parcelable.Creator CREATOR = new android.os.Parcelable.Creator() { public MessagePayload createFromParcel(Parcel parcel) { return MessagePayload.unpackParcel(parcel); } public volatile Object createFromParcel(Parcel parcel) { return createFromParcel(parcel); } public MessagePayload[] newArray(int i) { return new DeviceStatusRequest[i]; } public volatile Object[] newArray(int i) { return newArray(i); } }; private static final long serialVersionUID = 0x728dd8f0a1cb3068L; public DeviceStatusRequest() { } public boolean equals(Object obj) { if (obj != null) { if (obj == this) { return true; } if (obj.getClass() == getClass()) { return true; } } return false; } public int hashCode() { return super.hashCode(); } }