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 SocketManagerIPStaticAttributeController 35 extends 36 AttributeController 37 { 38 44 String getDestinationHostname(); 45 46 53 void setDestinationHostname(String hostname) throws UnknownHostException ; 54 55 60 int getDestinationPort(); 61 62 67 void setDestinationPort(int port); 68 } | Popular Tags |