blob: ce1b8b9badd8981eeae24a24250f62857acaa573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
*
*/
package uk.org.ury.server.protocol;
/**
* Directives supported by the protocol.
*
* @author Matt Windsor
*/
public enum Directive
{
INFO, // Information string (can usually be ignored)
ITEMS, // Item
STATUS, // Status code (from the enum Status)
REASON; // Error reason
}
|