add Shutdown
[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 <a href="mailto:dr@ina-germany.de">David Roden</a>
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 }