// 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.notifications; import android.os.Parcelable; import com.olio.communication.messages.MessagePayload; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; public class LookNotification extends MessagePayload implements Parcelable { private static final long serialVersionUID = 15L; private String mAssetBundleLocalUrl; private String mAssetBundleWebUrl; private Boolean mCurrent; private String mExampleImageLocalUrl; private String mExampleImageWebUrl; private String mLookId; private String mName; public LookNotification() { } public boolean equals(Object obj) { if (obj != null) { if (obj == this) { return true; } if (obj.getClass() == getClass()) { LookNotification looknotification = (LookNotification)obj; return (new EqualsBuilder()).appendSuper(super.equals(obj)).append(mLookId, looknotification.getLookId()).append(mName, looknotification.getName()).append(mCurrent, looknotification.getCurrent()).append(mAssetBundleWebUrl, looknotification.getAssetBundleWebUrl()).append(mAssetBundleLocalUrl, looknotification.getAssetBundleLocalUrl()).append(mExampleImageWebUrl, looknotification.getExampleImageWebUrl()).append(mExampleImageLocalUrl, looknotification.getExampleImageLocalUrl()).isEquals(); } } return false; } public String getAssetBundleLocalUrl() { return mAssetBundleLocalUrl; } public String getAssetBundleWebUrl() { return mAssetBundleWebUrl; } public Boolean getCurrent() { return mCurrent; } public String getExampleImageLocalUrl() { return mExampleImageLocalUrl; } public String getExampleImageWebUrl() { return mExampleImageWebUrl; } public String getLookId() { return mLookId; } public String getName() { return mName; } public int hashCode() { return (new HashCodeBuilder(83, 61)).append(mLookId).append(mName).append(mCurrent).append(mAssetBundleWebUrl).append(mAssetBundleLocalUrl).append(mExampleImageWebUrl).append(mExampleImageLocalUrl).toHashCode(); } public void setAssetBundleLocalUrl(String s) { mAssetBundleLocalUrl = s; } public void setAssetBundleWebUrl(String s) { mAssetBundleWebUrl = s; } public void setCurrent(Boolean boolean1) { mCurrent = boolean1; } public void setExampleImageLocalUrl(String s) { mExampleImageLocalUrl = s; } public void setExampleImageWebUrl(String s) { mExampleImageWebUrl = s; } public void setLookId(String s) { mLookId = s; } public void setName(String s) { mName = s; } }