1 30 31 package org.ofbiz.service.rmi.socket.zip; 32 33 34 import java.io.IOException ; 35 import java.net.ServerSocket ; 36 import java.net.Socket ; 37 38 class CompressionServerSocket extends ServerSocket { 39 40 public CompressionServerSocket(int port) throws IOException { 41 super(port); 42 } 43 44 public Socket accept() throws IOException { 45 Socket s = new CompressionSocket(); 46 implAccept(s); 47 return s; 48 } 49 } 50 | Popular Tags |