/* * This file is part of Bitsquare. * * Bitsquare is free software: you can redistribute it and/or modify it * under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or (at * your option) any later version. * * Bitsquare is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public * License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Bitsquare. If not, see <http://www.gnu.org/licenses/>. */ package io.bitsquare.arbitration.messages; import io.bitsquare.app.Version; import io.bitsquare.arbitration.Dispute; import io.bitsquare.p2p.NodeAddress; public final class OpenNewDisputeMessage extends DisputeMessage { // That object is sent over the wire, so we need to take care of version compatibility. private static final long serialVersionUID = Version.P2P_NETWORK_VERSION; public final Dispute dispute; private final NodeAddress myNodeAddress; public OpenNewDisputeMessage(Dispute dispute, NodeAddress myNodeAddress) { this.dispute = dispute; this.myNodeAddress = myNodeAddress; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof OpenNewDisputeMessage)) return false; OpenNewDisputeMessage that = (OpenNewDisputeMessage) o; if (dispute != null ? !dispute.equals(that.dispute) : that.dispute != null) return false; return !(myNodeAddress != null ? !myNodeAddress.equals(that.myNodeAddress) : that.myNodeAddress != null); } @Override public int hashCode() { int result = dispute != null ? dispute.hashCode() : 0; result = 31 * result + (myNodeAddress != null ? myNodeAddress.hashCode() : 0); return result; } @Override public NodeAddress getSenderNodeAddress() { return myNodeAddress; } }