blob: bd0be0e210afd4baea06b3697e76373433e48252 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
*
*/
package uk.org.ury.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
}
|