iiopprofile.java

来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 43 行

JAVA
43
字号
/* * @(#)IIOPProfile.java	1.15 03/12/19  * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.ior.iiop;import com.sun.corba.se.spi.ior.TaggedProfile ;import com.sun.corba.se.spi.orb.ORB ;import com.sun.corba.se.spi.orb.ORBVersion ;import com.sun.corba.se.spi.ior.iiop.GIOPVersion ;/** IIOPProfile represents an IIOP tagged profile.* It is essentially composed of an object identifier and* a template.  The template contains all of the * IIOP specific information in the profile.* Templates are frequently shared between many different profiles,* while the object identifiy is unique to each profile.*/public interface IIOPProfile extends TaggedProfile{    ORBVersion getORBVersion() ;    /** Return the servant for this profile, if it is local      * AND if the OA that implements this objref supports direct access to servants      * outside of an invocation.     * XXX move this to the ObjectKeyTemplate     */    java.lang.Object getServant() ;    /** Return the GIOPVersion of this profile.  Caches the result.     */    GIOPVersion getGIOPVersion() ;    /** Return the Codebase of this profile.  Caches the result.     */    String getCodebase() ;}

⌨️ 快捷键说明

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