Add more commands
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / UnsubscribeUSK.java
1 package net.pterodactylus.fcp;
2
3 /**
4  * The “UnsubscribeUSK” message is used to cancel a {@link SubscribeUSK USK subscription}.
5  *
6  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
7  */
8 public class UnsubscribeUSK extends FcpMessage {
9
10         public UnsubscribeUSK(String identifier) {
11                 super("UnsubscribeUSK");
12                 setField("Identifier", identifier);
13         }
14
15 }