8a4c46badc
changed to Presents and Party changed to Crowd. Whee! git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@431 542714f4-19e9-0310-aa3c-eee0fc999fb1
21 lines
688 B
Java
21 lines
688 B
Java
//
|
|
// $Id: InvocationCodes.java,v 1.2 2001/10/11 04:07:52 mdb Exp $
|
|
|
|
package com.threerings.presents.client;
|
|
|
|
/**
|
|
* The invocation codes interface provides codes that are commonly used by
|
|
* invocation service implementations. It is implemented as an interface
|
|
* so that were an invocation service to desire to build on two or more
|
|
* other services, it can provide a codes interface that inherits from all
|
|
* of the services that it extends.
|
|
*/
|
|
public interface InvocationCodes
|
|
{
|
|
/**
|
|
* 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";
|
|
}
|