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