1bbb78850723d48d60d27c8d7f2185647984fc80
[jSite2.git] / src / net / pterodactylus / util / fcp / ListPeerNotes.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6
7 /**
8  * A “ListPeerNodes” request tells the node to list all notes that have been
9  * entered for a node. Note that notes are only supported for darknet nodes.
10  * 
11  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
12  * @version $Id$
13  */
14 public class ListPeerNotes extends FcpMessage {
15
16         /**
17          * Creates a new “ListPeerNotes” request that lists all notes of the
18          * specified node.
19          * 
20          * @param nodeIdentifier
21          *            The identifier of the node
22          */
23         public ListPeerNotes(String nodeIdentifier) {
24                 super("ListPeerNotes");
25                 setField("NodeIdentifier", nodeIdentifier);
26         }
27
28 }