KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > agent > AgentService


1 package com.sslexplorer.agent;
2
3 import com.maverick.multiplex.Channel;
4 import com.maverick.multiplex.ChannelOpenException;
5 import com.maverick.multiplex.MultiplexedConnection;
6
7 /**
8  */

9 public interface AgentService {
10
11     /**
12      * @param tunnel
13      */

14     void initializeTunnel(AgentTunnel tunnel);
15     
16     /**
17      * @param tunnel
18      */

19     void performStartup(AgentTunnel tunnel);
20     
21     /**
22      * @param connection
23      * @param type
24      * @return Channel
25      * @throws ChannelOpenException
26      */

27     Channel createChannel(MultiplexedConnection connection, String JavaDoc type) throws ChannelOpenException;
28 }
Popular Tags