679da0889332e84da47e13231bfe51cae811d3f8
[jSite2.git] / src / net / pterodactylus / util / fcp / Shutdown.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6 /**
7  * Command that shuts down the node.
8  * 
9  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
10  * @version $Id$
11  */
12 public class Shutdown extends FcpMessage {
13
14         /**
15          * Creates a new “Shutdown” message.
16          */
17         public Shutdown() {
18                 super("Shutdown");
19         }
20
21 }