// 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.data.object.assistant.rule; import java.util.List; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; // Referenced classes of package com.olio.data.object.assistant.rule: // NotificationRule public class AutomaticReplyRule extends NotificationRule { public static final String TYPE_NAME = com/olio/data/object/assistant/rule/AutomaticReplyRule.getSimpleName(); private static final long serialVersionUID = 0x763262a64990c5b8L; private List exceptions; private List how; private String replyText; public AutomaticReplyRule() { } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } else { AutomaticReplyRule automaticreplyrule = (AutomaticReplyRule)obj; return (new EqualsBuilder()).appendSuper(super.equals(obj)).append(how, automaticreplyrule.how).append(exceptions, automaticreplyrule.exceptions).append(replyText, automaticreplyrule.replyText).isEquals(); } } public com.olio.olios.model.record.SerializedRecord.SerializedRecordObject getDefaultObject() { return new AutomaticReplyRule(); } public List getExceptions() { return exceptions; } public List getHow() { return how; } public String getReplyText() { return replyText; } public int hashCode() { return (new HashCodeBuilder(17, 37)).appendSuper(super.hashCode()).append(how).append(exceptions).append(replyText).toHashCode(); } public void setExceptions(List list) { exceptions = list; } public void setHow(List list) { how = list; } public void setReplyText(String s) { replyText = s; } }