1 25 26 package org.objectweb.easybeans.component.smartclient.message; 27 28 import java.nio.ByteBuffer ; 29 30 import org.objectweb.easybeans.component.smartclient.api.ProtocolConstants; 31 32 36 public class ClassNotFound extends AbsNameMessage { 37 38 42 public ClassNotFound(final String name) { 43 super(name); 44 } 45 46 50 public ClassNotFound(final ByteBuffer buffer) { 51 super(buffer); 52 } 53 54 55 56 60 @Override  61 public byte getOpCode() { 62 return ProtocolConstants.CLASS_NOT_FOUND; 63 } 64 65 } 66 | Popular Tags |