1 24 25 package com.mckoi.database.jdbc; 26 27 32 33 public interface ProtocolConstants { 34 35 38 public int ACKNOWLEDGEMENT = 5; 39 40 43 public int USER_AUTHENTICATION_PASSED = 10; 44 45 48 public int USER_AUTHENTICATION_FAILED = 15; 49 50 53 public int SUCCESS = 20; 54 55 58 public int FAILED = 25; 59 60 61 64 public int EXCEPTION = 30; 65 66 70 public int AUTHENTICATION_ERROR = 35; 71 72 73 74 75 76 78 81 public int QUERY = 50; 82 83 86 public int DISPOSE_RESULT = 55; 87 88 91 public int RESULT_SECTION = 60; 92 93 96 public int STREAMABLE_OBJECT_SECTION = 61; 97 98 102 public int DISPOSE_STREAMABLE_OBJECT = 62; 103 104 107 public int PUSH_STREAMABLE_OBJECT_PART = 63; 108 109 110 111 112 115 public int PING = 65; 116 117 120 public int CLOSE = 70; 121 122 125 public int DATABASE_EVENT = 75; 126 127 131 public int SERVER_REQUEST = 80; 132 133 134 } 135 | Popular Tags |