001package org.kuali.common.util.channel.impl; 002 003import java.io.IOException; 004 005import org.kuali.common.util.channel.api.SecureChannel; 006import org.kuali.common.util.channel.api.ChannelService; 007import org.kuali.common.util.channel.model.ChannelContext; 008 009public class DefaultChannelService implements ChannelService { 010 011 @Override 012 public SecureChannel openChannel(ChannelContext context) throws IOException { 013 return new DefaultSecureChannel(context); 014 } 015 016}