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.SecureChannel;
6   import org.kuali.common.util.channel.api.ChannelService;
7   import org.kuali.common.util.channel.model.ChannelContext;
8   
9   public class DefaultChannelService implements ChannelService {
10  
11  	@Override
12  	public SecureChannel openChannel(ChannelContext context) throws IOException {
13  		return new DefaultSecureChannel(context);
14  	}
15  
16  }