b972a3f599247514498572d2cc300a8374553449
[jFCPlib.git] / src / net / pterodactylus / fcp / SubscribeUSK.java
1 /*
2  * jSite2 - SubscribeUSK.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  * With a “SubscribeUSK” a client requests to be notified if the edition number
24  * of a USK changes.
25  * 
26  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
27  */
28 public class SubscribeUSK extends FcpMessage {
29
30         /**
31          * Creates a new “SubscribeUSK” message.
32          * 
33          * @param uri
34          *            The URI to watch for changes
35          * @param identifier
36          *            The identifier of the request
37          */
38         public SubscribeUSK(String uri, String identifier) {
39                 super("SubscribeUSK");
40                 setField("URI", uri);
41                 setField("Identifier", identifier);
42         }
43
44         /**
45          * Sets whether updates for the USK are actively searched.
46          * 
47          * @param active
48          *            <code>true</code> to actively search for newer editions,
49          *            <code>false</code> to only watch for newer editions that are
50          *            found from other requests
51          */
52         public void setActive(boolean active) {
53                 setField("DontPoll", String.valueOf(!active));
54         }
55
56 }