--- /dev/null
+/**
+ * © 2008 INA Service GmbH
+ */
+package net.pterodactylus.util.fcp;
+
+/**
+ * The “ModifyPeerNote” command modifies a peer note.
+ *
+ * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @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));
+ }
+
+}