/* (non-Javadoc)
* @see com.adito.agent.AgentService#createChannel(com.maverick.multiplex.MultiplexedConnection, java.lang.String)
*/
public Channel createChannel(MultiplexedConnection connection, String type) {
if (type.equals(ApplicationFileChannel.CHANNEL_TYPE)) {
return new ApplicationFileChannel((AgentTunnel)connection);
} else
return null;
}