a48ddef3c64e64e32cae2c11b00287f82f194048
[jFCPlib.git] / src / net / pterodactylus / fcp / ModifyPeerNote.java
1 /*
2  * jSite2 - ModifyPeerNote.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.fcp;
21
22 /**
23  * The “ModifyPeerNote” command modifies a peer note.
24  * 
25  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
26  */
27 public class ModifyPeerNote extends FcpMessage {
28
29         /**
30          * Creates a new “ModifyPeerNote” request that changes peer note of the
31          * given type and node to the given text.
32          * 
33          * @see PeerNote
34          * @param nodeIdentifier
35          *            The identifier of the node, i.e. name, identity, or IP address
36          *            and port
37          * @param noteText
38          *            The base64-encoded text
39          * @param peerNoteType
40          *            The type of the note to change, possible values are only
41          *            {@link PeerNote#TYPE_PRIVATE_PEER_NOTE} at the moment
42          */
43         public ModifyPeerNote(String nodeIdentifier, String noteText, int peerNoteType) {
44                 super("ModifyPeer");
45                 setField("NodeIdentifier", nodeIdentifier);
46                 setField("NoteText", noteText);
47                 setField("PeerNoteType", String.valueOf(peerNoteType));
48         }
49
50 }