1 30 31 package org.apache.commons.httpclient.server; 32 33 import java.io.IOException ; 34 import java.net.ServerSocket ; 35 36 41 public class SimplePlainSocketFactory implements SimpleSocketFactory { 42 43 public SimplePlainSocketFactory() { 44 super(); 45 } 46 47 public ServerSocket createServerSocket(int port) throws IOException { 48 return new ServerSocket (port); 49 } 50 51 } 52 | Popular Tags |