Fix copyright line.
[jFCPlib.git] / src / net / pterodactylus / fcp / ListPeers.java
index 3ae3637..958e9d6 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - ListPeers.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - ListPeers.java - Copyright © 2008 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -23,30 +22,35 @@ package net.pterodactylus.fcp;
  * The “ListPeer” requests asks the node for a list of all peers it has.
  * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
  */
 public class ListPeers extends FcpMessage {
 
        /**
         * Creates a new “ListPeers” request that only includes basic data of the
         * peers.
+        * 
+        * @param identifier
+        *            The identifier of the request
         */
-       public ListPeers() {
-               this(false, false);
+       public ListPeers(String identifier) {
+               this(identifier, false, false);
        }
 
        /**
         * Creates a new “ListPeers” request that includes wanted data of the peers.
         * 
+        * @param identifier
+        *            The identifier of the request
         * @param withMetadata
-        *            If <code>true</code> metadata of the peers is included in
-        *            the reply
+        *            If <code>true</code> metadata of the peers is included in the
+        *            reply
         * @param withVolatile
-        *            if <code>true</code> volatile data of the peers is included
-        *            in the reply
+        *            if <code>true</code> volatile data of the peers is included in
+        *            the reply
         */
-       public ListPeers(boolean withMetadata, boolean withVolatile) {
+       public ListPeers(String identifier, boolean withMetadata, boolean withVolatile) {
                super("ListPeers");
+               setField("Identifier", identifier);
                setField("WithMetadata", String.valueOf(withMetadata));
                setField("WithVolatile", String.valueOf(withVolatile));
        }