01: package net.suberic.pooka.messaging;
02:
03: /**
04: * Constants for Pooka messaging.
05: */
06: public interface PookaMessagingConstants {
07:
08: /** Create a new message. */
09: public static String S_NEW_MESSAGE = "new_message";
10:
11: /** Check .pookarc version. */
12: public static String S_CHECK_VERSION = "show_pookarc";
13:
14: /** Start Pooka. */
15: public static String S_START_POOKA = "start_pooka";
16:
17: /** End connection. */
18: public static String S_BYE = "bye";
19:
20: /** Confirmation. */
21: public static String S_OK = "ok";
22:
23: /** The port to listen on. */
24: public static int S_PORT = 27029;
25:
26: }
|