blob: c9d848dfa1e9f5dd99434c866441719f716d733a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
*
*/
package uk.org.ury.server.protocol;
/**
* Statuses that can follow the STATUS directory.
*
* @author Matt Windsor
*/
public enum Status
{
OK, // The request was processed OK; response should be valid
ERROR // An error occurred; message provided as REASON directive
}
|