1 24 25 package org.objectweb.dream.channel; 26 27 import java.net.UnknownHostException ; 28 29 import org.objectweb.fractal.api.control.AttributeController; 30 31 34 public interface AddIPChannelAttributeController extends AttributeController 35 { 36 37 42 String getChunkName(); 43 44 49 void setChunkName(String chunkName); 50 51 56 String getInetAddress(); 57 58 65 void setInetAddress(String inetAddress) throws UnknownHostException ; 66 67 72 int getPort(); 73 74 79 void setPort(int port); 80 } | Popular Tags |