89d073b13c
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@12 542714f4-19e9-0310-aa3c-eee0fc999fb1
18 lines
485 B
Java
18 lines
485 B
Java
//
|
|
// $Id: CherCodes.java,v 1.2 2001/05/30 23:58:31 mdb Exp $
|
|
|
|
package com.threerings.cocktail.cher.util;
|
|
|
|
/**
|
|
* The <code>Codes</code> class serves as a repository for miscellaneous
|
|
* string and integer constants used by componenets of the Cher system.
|
|
*/
|
|
public class Codes
|
|
{
|
|
/**
|
|
* Generally used in responses that can either have the value success,
|
|
* or a string code explaining the reason for failure.
|
|
*/
|
|
public static final String SUCCESS = "success";
|
|
}
|