a8d89144f118b0dc7725abdf2754dfaf5216e177
[jSite2.git] / src / net / pterodactylus / util / fcp / UploadFrom.java
1 /**
2  * © 2008 INA Service GmbH
3  */
4 package net.pterodactylus.util.fcp;
5
6 /**
7  * Enumeration for the different values for the “UploadFrom” field in
8  * {@link ClientPut} and {@link ClientGet} requests.
9  * 
10  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
11  * @version $Id$
12  */
13 public enum UploadFrom {
14
15         /** Request data follows the request. */
16         direct,
17
18         /** Request data is written to or read from disk. */
19         disk,
20
21         /** Request data is just a redirect. */
22         redirect;
23
24 }