add Shutdown
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 10 Apr 2008 13:47:10 +0000 (13:47 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 10 Apr 2008 13:47:10 +0000 (13:47 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@693 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/util/fcp/Shutdown.java [new file with mode: 0644]

diff --git a/src/net/pterodactylus/util/fcp/Shutdown.java b/src/net/pterodactylus/util/fcp/Shutdown.java
new file mode 100644 (file)
index 0000000..151975c
--- /dev/null
@@ -0,0 +1,21 @@
+/**
+ * © 2008 INA Service GmbH
+ */
+package net.pterodactylus.util.fcp;
+
+/**
+ * Command that shuts down the node.
+ * 
+ * @author <a href="mailto:dr@ina-germany.de">David Roden</a>
+ * @version $Id$
+ */
+public class Shutdown extends FcpMessage {
+
+       /**
+        * Creates a new “Shutdown” message.
+        */
+       public Shutdown() {
+               super("Shutdown");
+       }
+
+}