I write two lines in the morning. I write two lines at night.

I write two lines in the afternoon and it makes me feel alright.
I write two lines in times of peace, I write two in times of war.
I write two lines before I write two lines, and then I write two more.

Bringing ActionScript world into line with the Javver.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4556 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-02-11 03:28:48 +00:00
parent b7e16c86f5
commit cb5fd7ff55
11 changed files with 151 additions and 54 deletions
@@ -22,23 +22,24 @@
package com.threerings.presents.data {
/**
* 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
* 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 class InvocationCodes
{
/** An error code returned to clients when a service cannot be
* performed because of some internal server error that we couldn't
* explain in any meaningful way (things like null pointer
* exceptions). */
/** Defines a global invocation services group that can be used by clients and services that do
* not care to make a distinction between groups of invocation services. */
public static const GLOBAL_GROUP :String = "presents";
/** An error code returned to clients when a service cannot be performed because of some
* internal server error that we couldn't explain in any meaningful way (things like null
* pointer exceptions). */
public static const INTERNAL_ERROR :String = "m.internal_error";
/** An error code returned to clients when a service cannot be
* performed because the requesting client does not have the proper
* access. */
/** An error code returned to clients when a service cannot be performed because the requesting
* client does not have the proper access. */
public static const ACCESS_DENIED :String = "m.access_denied";
}
}