X-Git-Url: https://git.pterodactylus.net/?p=rhynodge.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Freactor%2Fstates%2FTorrentState.java;h=f3b35467e0a15bdeb9d4a802597774709badd8fb;hp=9e9659d585e0ffd5ad13aac52d6877ea958cc81f;hb=7cc0345d0ed05aba95c7ede138685195cc7e95cd;hpb=e5a3f0f0500c9ef27e5c7c8726b73aa04c358e9b diff --git a/src/main/java/net/pterodactylus/reactor/states/TorrentState.java b/src/main/java/net/pterodactylus/reactor/states/TorrentState.java index 9e9659d..f3b3546 100644 --- a/src/main/java/net/pterodactylus/reactor/states/TorrentState.java +++ b/src/main/java/net/pterodactylus/reactor/states/TorrentState.java @@ -27,6 +27,7 @@ import net.pterodactylus.reactor.states.TorrentState.TorrentFile; import org.apache.http.NameValuePair; import org.apache.http.client.utils.URLEncodedUtils; +import com.fasterxml.jackson.annotation.JsonProperty; import com.google.common.collect.Lists; /** @@ -38,7 +39,8 @@ import com.google.common.collect.Lists; public class TorrentState extends AbstractState implements Iterable { /** The torrent files. */ - private final List files = Lists.newArrayList(); + @JsonProperty + private List files = Lists.newArrayList(); // // ACCESSORS @@ -88,27 +90,42 @@ public class TorrentState extends AbstractState implements Iterable public static class TorrentFile { /** The name of the file. */ + @JsonProperty private final String name; /** The size of the file. */ + @JsonProperty private final String size; /** The magnet URI of the file. */ + @JsonProperty private final String magnetUri; /** The download URI of the file. */ + @JsonProperty private final String downloadUri; /** The number of files in this torrent. */ + @JsonProperty private final int fileCount; /** The number of seeds connected to this torrent. */ + @JsonProperty private final int seedCount; /** The number of leechers connected to this torrent. */ + @JsonProperty private final int leechCount; /** + * No-arg constructor for deserialization. + */ + @SuppressWarnings("unused") + private TorrentFile() { + this(null, null, null, null, 0, 0, 0); + } + + /** * Creates a new torrent file. * * @param name