1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy.io;
8
9 import java.io.InterruptedIOException;
10
11 import java.net.ServerSocket;
12
13 import org.indy.IndyComponent;
14 import org.indy.IndyThread;
15
16
17 /***
18 * Description of the Class
19 *
20 *@author owen
21 */
22 public abstract class ServerIOHandler extends IndyComponent {
23 /***
24 * Description of the Method
25 */
26 public void init() {
27 }
28
29 /***
30 * Description of the Method
31 *
32 *@param ss Description of the Parameter
33 *@param thread Description of the Parameter
34 *@return Description of the Return Value
35 *@throws InterruptedIOException Description of the Exception
36 */
37 public IOHandler accept(ServerSocket ss, IndyThread thread)
38 throws InterruptedIOException, IndyIOException {
39 return null;
40 }
41 }
This page was automatically generated by Maven