import net.pterodactylus.reactor.State;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonTypeInfo;
+
/**
* Abstract implementation of a {@link State} that knows about the basic
* attributes of a {@link State}.
*
* @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
*/
+@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "@class")
public abstract class AbstractState implements State {
/** The time of this state. */
+ @JsonProperty
private final long time;
/** Whether the state was successfully retrieved. */
import org.apache.http.NameValuePair;
import org.apache.http.client.utils.URLEncodedUtils;
+import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.collect.Lists;
/**
public class TorrentState extends AbstractState implements Iterable<TorrentFile> {
/** The torrent files. */
- private final List<TorrentFile> files = Lists.newArrayList();
+ @JsonProperty
+ private List<TorrentFile> files = Lists.newArrayList();
//
// ACCESSORS
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