⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 corbacontactinfolistfactory.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)CorbaContactInfoListFactory.java	1.9 05/11/17 *  * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.transport ;import com.sun.corba.se.spi.transport.CorbaContactInfoList ;import com.sun.corba.se.spi.ior.IOR ;import com.sun.corba.se.spi.orb.ORB;/** Interface used to create a ContactInfoList from an IOR, as required * for supporting CORBA semantics using the DCS framework.  This is a  * natural correspondence since an IOR contains the information for * contacting one or more communication endpoints that can be used to * invoke a method on an object, along with the necessary information * on particular transports, encodings, and protocols to use. * Note that the actual implementation may support more than one * IOR in the case of GIOP with Location Forward messages.  */public interface CorbaContactInfoListFactory {    /**     * This will be called after the no-arg constructor before     * create is called.     */    public void setORB(ORB orb);    public CorbaContactInfoList create( IOR ior ) ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -