Child: [r22] (diff)

Download this file

RequestOrigin.java    25 lines (22 with data), 713 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* SPDXVersion: SPDX-1.1
* Creator: Person: Nuno Brito (nuno.brito@triplecheck.de)
* Creator: Organization: TripleCheck (http://triplecheck.de)
* Created: 2013-12-02T00:00:00Z
* LicenseName: NOASSERTION
* FileName: RequestOrigin.java
* FileType: SOURCE
* FileCopyrightText: <text> Copyright (c) 2013 Nuno Brito, TripleCheck </text>
* FileComment: <text> From where has this request came from? </text>
*/
package www;
/**
*
* @author Nuno Brito, 2nd of December 2013 in Darsmtadt, Germany
*/
public enum RequestOrigin {
UNKNOWN, // unknown origin
BROWSER, // from a normal web browser
GUI, // from a Java Swing user interface
GUI_tree; // from the tree view on our GUI
}