From: David ‘Bombe’ Roden Date: Thu, 10 Apr 2008 13:47:10 +0000 (+0000) Subject: add Shutdown X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=cd73109da9ce44e2b4b0df6828f564034fca6cf4;p=jSite2.git add Shutdown git-svn-id: http://trooper/svn/projects/jSite/trunk@693 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/util/fcp/Shutdown.java b/src/net/pterodactylus/util/fcp/Shutdown.java new file mode 100644 index 0000000..151975c --- /dev/null +++ b/src/net/pterodactylus/util/fcp/Shutdown.java @@ -0,0 +1,21 @@ +/** + * © 2008 INA Service GmbH + */ +package net.pterodactylus.util.fcp; + +/** + * Command that shuts down the node. + * + * @author David Roden + * @version $Id$ + */ +public class Shutdown extends FcpMessage { + + /** + * Creates a new “Shutdown” message. + */ + public Shutdown() { + super("Shutdown"); + } + +}