1 /*2 * @(#)SocketOrChannelAcceptor.java 1.2 03/12/193 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 8 package com.sun.corba.se.spi.transport;9 10 import java.net.ServerSocket ;11 12 /**13 * @author Harold Carr14 */15 public interface SocketOrChannelAcceptor16 {17 public ServerSocket getServerSocket();18 }19 20 // End of file.21