📄 objectkey.java
字号:
/* * @(#)ObjectKey.java 1.11 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;import com.sun.corba.se.spi.protocol.CorbaServerRequestDispatcher ;import com.sun.corba.se.spi.orb.ORB ;/** The full object key, which is contained in an IIOPProfile.* The object identifier corresponds to the information passed into* POA::create_reference_with_id and POA::create_reference* (in the POA case). The template * represents the information that is object adapter specific and * shared across multiple ObjectKey instances.*/public interface ObjectKey extends Writeable{ /** Return the object identifier for this Object key. */ ObjectId getId() ; /** Return the template for this object key. */ ObjectKeyTemplate getTemplate() ; byte[] getBytes( org.omg.CORBA.ORB orb ) ; CorbaServerRequestDispatcher getServerRequestDispatcher( ORB orb ) ;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -