com.threerings.crowd.data
Interface LocationCodes

All Superinterfaces:
InvocationCodes
All Known Implementing Classes:
LocationDirector, LocationManager

public interface LocationCodes
extends InvocationCodes

Contains codes used by the location invocation services.


Field Summary
static String ALREADY_THERE
          An error code sent when a user requests to move to a place, but they are already in the requested place.
static String MOVE_IN_PROGRESS
          An error code sent when a user requests to move to a new place but they are in the middle of moving somewhere already.
static String NO_SUCH_PLACE
          An error code indicating that a place identified by a particular place id does not exist.
 
Fields inherited from interface com.threerings.presents.data.InvocationCodes
ACCESS_DENIED, E_ACCESS_DENIED, E_INTERNAL_ERROR, GLOBAL_GROUP, INTERNAL_ERROR
 

Field Detail

NO_SUCH_PLACE

static final String NO_SUCH_PLACE
An error code indicating that a place identified by a particular place id does not exist. Usually generated by a failed moveTo request.

See Also:
Constant Field Values

MOVE_IN_PROGRESS

static final String MOVE_IN_PROGRESS
An error code sent when a user requests to move to a new place but they are in the middle of moving somewhere already.

See Also:
Constant Field Values

ALREADY_THERE

static final String ALREADY_THERE
An error code sent when a user requests to move to a place, but they are already in the requested place.

See Also:
Constant Field Values