remove obsolete fcp directory
[jSite2.git] / src / net / pterodactylus / util / fcp / ModifyPeerNote.java
diff --git a/src/net/pterodactylus/util/fcp/ModifyPeerNote.java b/src/net/pterodactylus/util/fcp/ModifyPeerNote.java
deleted file mode 100644 (file)
index 0da9908..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * © 2008 INA Service GmbH
- */
-package net.pterodactylus.util.fcp;
-
-/**
- * The “ModifyPeerNote” command modifies a peer note.
- * 
- * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
- */
-public class ModifyPeerNote extends FcpMessage {
-
-       /**
-        * Creates a new “ModifyPeerNote” request that changes peer note of the
-        * given type and node to the given text.
-        * 
-        * @see PeerNote
-        * @param nodeIdentifier
-        *            The identifier of the node, i.e. name, identity, or IP address
-        *            and port
-        * @param noteText
-        *            The base64-encoded text
-        * @param peerNoteType
-        *            The type of the note to change, possible values are only
-        *            {@link PeerNote#TYPE_PRIVATE_PEER_NOTE} at the moment
-        */
-       public ModifyPeerNote(String nodeIdentifier, String noteText, int peerNoteType) {
-               super("ModifyPeer");
-               setField("NodeIdentifier", nodeIdentifier);
-               setField("NoteText", noteText);
-               setField("PeerNoteType", String.valueOf(peerNoteType));
-       }
-
-}