objectkey.java
来自「JAVA的一些源码 JAVA2 STANDARD EDITION DEVELO」· Java 代码 · 共 35 行
JAVA
35 行
/* * @(#)ObjectKey.java 1.10 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;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 + =
减小字号Ctrl + -
显示快捷键?