View Javadoc
1   package org.kuali.common.util.channel.impl;
2   
3   import java.io.IOException;
4   
5   import org.kuali.common.util.channel.api.ChannelService;
6   import org.kuali.common.util.channel.api.SecureChannel;
7   import org.kuali.common.util.channel.model.ChannelContext;
8   
9   /**
10   * @deprecated
11   */
12  @Deprecated
13  public class DefaultChannelService implements ChannelService {
14  
15  	@Override
16  	public SecureChannel openChannel(ChannelContext context) throws IOException {
17  		return new DefaultSecureChannel(context);
18  	}
19  
20  }