1 24 25 package org.objectweb.dream.pushwithreturn; 26 27 import org.objectweb.dream.message.ChunkType; 28 import org.objectweb.dream.message.ChunkTypeImpl; 29 30 35 public interface KeyChunk 36 { 37 38 39 String DEFAULT_NAME = "keyChunk"; 40 41 42 ChunkType TYPE = new ChunkTypeImpl(KeyChunk.class, KeyChunkImpl.class); 43 44 49 Key getKey(); 50 51 56 void setKey(Key key); 57 } | Popular Tags |