implement node addition and removal events
[jSite2.git] / src / net / pterodactylus / util / fcp / ListPersistentRequests.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6 /**
7  * Command to tell the node to list all persistent requests from the current
8  * queue, which is either the global queue or the client-local queue, depending
9  * on your {@link WatchGlobal} status.
10  * 
11  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
12  * @version $Id$
13  */
14 public class ListPersistentRequests extends FcpMessage {
15
16         /**
17          * Creates a new “ListPersistentRequests” command that lists all persistent
18          * requests in the current queue.
19          */
20         public ListPersistentRequests() {
21                 super("ListPersistentRequests");
22         }
23
24 }