// 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.actions; import java.io.Serializable; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; public class WebHeader implements Serializable { private String mHeader; private String mValue; public WebHeader() { } public WebHeader(String s, String s1) { mHeader = s; mValue = s1; } public boolean equals(Object obj) { if (obj != null) { if (obj == this) { return true; } if (obj.getClass() == getClass()) { obj = (WebHeader)obj; return (new EqualsBuilder()).append(mHeader, ((WebHeader) (obj)).getHeader()).append(mValue, ((WebHeader) (obj)).getValue()).isEquals(); } } return false; } public String getHeader() { return mHeader; } public String getValue() { return mValue; } public int hashCode() { return (new HashCodeBuilder(107, 25)).append(mHeader).append(mValue).toHashCode(); } public void setHeader(String s) { mHeader = s; } public void setValue(String s) { mValue = s; } }