From: David ‘Bombe’ Roden Date: Thu, 10 Apr 2008 16:39:50 +0000 (+0000) Subject: add ReturnType X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=74f8840c09fd9936a426b1a7aaf932071cd8bc3e;p=jSite2.git add ReturnType git-svn-id: http://trooper/svn/projects/jSite/trunk@698 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/util/fcp/ReturnType.java b/src/net/pterodactylus/util/fcp/ReturnType.java new file mode 100644 index 0000000..acdc5c4 --- /dev/null +++ b/src/net/pterodactylus/util/fcp/ReturnType.java @@ -0,0 +1,23 @@ +/** + * © 2008 INA Service GmbH + */ +package net.pterodactylus.util.fcp; + +/** + * The different return types for {@link ClientGet} requests. + * + * @author David Roden + * @version $Id$ + */ +public enum ReturnType { + + /** Don't transfer the data at all. */ + none, + + /** Transfer the data directly after the message. */ + direct, + + /** Copy the data to disk. */ + disk; + +}