KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > protocol > ClientDelegateFactory


1 /*
2  * @(#)ClientDelegateFactory.java 1.8 03/12/19
3  *
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.protocol ;
9
10 import com.sun.corba.se.spi.transport.CorbaContactInfoList ;
11
12 import com.sun.corba.se.spi.protocol.CorbaClientDelegate ;
13
14 /** Interface used to create a ClientDelegate from a ContactInfoList.
15  */

16 public interface ClientDelegateFactory {
17     CorbaClientDelegate create( CorbaContactInfoList list ) ;
18 }
19
Popular Tags