📄 iiopprofile.java
字号:
/* * @(#)IIOPProfile.java 1.16 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.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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -