217706729a937c54c725ebd17a40a215dd47474e
[xudocci.git] / src / main / java / net / pterodactylus / xdcc / ui / stdin / DownloadFailure.java
1 /*
2  * XdccDownloader - DownloadFailure.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.xdcc.ui.stdin;
19
20 import net.pterodactylus.xdcc.data.Download;
21
22 /**
23  * TODO
24  *
25  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
26  */
27 public class DownloadFailure {
28
29         private final Download download;
30         private final long failureTime;
31
32         public DownloadFailure(Download download, long failureTime) {
33                 this.download = download;
34                 this.failureTime = failureTime;
35         }
36
37         public Download getDownload() {
38                 return download;
39         }
40
41         public long getFailureTime() {
42                 return failureTime;
43         }
44
45         @Override
46         public int hashCode() {
47                 return (int) (download.hashCode() ^ (failureTime & 0xffffffff) ^ (failureTime >> 32));
48         }
49
50         @Override
51         public boolean equals(Object object) {
52                 if (!(object instanceof DownloadFailure)) {
53                         return false;
54                 }
55                 DownloadFailure downloadFailure = (DownloadFailure) object;
56                 return downloadFailure.getDownload().equals(getDownload()) && (downloadFailure.getFailureTime() == getFailureTime());
57         }
58
59 }