1 24 25 package pushwithreturn; 26 27 import org.objectweb.dream.message.ChunkType; 28 import org.objectweb.dream.message.ChunkTypeImpl; 29 30 33 public interface TestChunk 34 { 35 36 37 String DEFAULT_NAME = "test-chunk"; 38 39 40 ChunkType TYPE = new ChunkTypeImpl(TestChunk.class, 41 TestChunkImpl.class); 42 43 48 String getMessage(); 49 50 55 void setMessage(String message); 56 } | Popular Tags |