1 25 26 package org.objectweb.easybeans.component.smartclient.api; 27 28 32 public interface ProtocolConstants { 33 34 38 byte version(); 39 40 41 44 byte PROTOCOL_VERSION = 0x01; 45 46 49 byte CLASS_REQUEST = (byte) 0x01; 50 51 54 byte CLASS_ANSWER = (byte) 0x02; 55 56 59 byte CLASS_NOT_FOUND = (byte) 0x03; 60 61 64 byte RESOURCE_REQUEST = (byte) 0x04; 65 66 69 byte RESOURCE_ANSWER = (byte) 0x05; 70 71 74 byte RESOURCE_NOT_FOUND = (byte) 0x06; 75 76 79 byte PROVIDER_URL_REQUEST = (byte) 0x07; 80 81 84 byte PROVIDER_URL_ANSWER = (byte) 0x08; 85 86 87 } 88 | Popular Tags |