1 22 package org.jboss.mq.il; 23 24 import java.util.Properties ; 25 26 35 public interface ServerILFactory 36 { 37 38 42 public final static String SERVER_IL_FACTORY_KEY = "ServerILFactory"; 43 44 48 public final static String CLIENT_IL_SERVICE_KEY = "ClientILService"; 49 50 54 public final static String PING_PERIOD_KEY = "PingPeriod"; 55 56 59 public final static String CLIENTID = "ClientID"; 60 61 public void init(Properties props) throws Exception ; 63 64 public ServerIL getServerIL() throws Exception ; 66 } 67 | Popular Tags |