response.java
来自「java jdk 1.4的源码」· Java 代码 · 共 72 行
JAVA
72 行
/* * @(#)Response.java 1.21 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.internal.core;import org.omg.CORBA.SystemException;/** * Response represents a GIOP response received from the server * object. */public interface Response { /** * Is this response a system exception? */ public boolean isSystemException(); /** * Is this response a user exception? */ public boolean isUserException(); /** * Is this a location forward? */ public boolean isLocationForward(); /** * IOR from the forward request */ IOR getForwardedIOR(); /** * Get the request id corresponding to this response. */ public int getRequestId(); /** * Get the service context information for this response. */ public ServiceContexts getServiceContexts(); /** * Get the SystemException object if this response unmarshalled * off the wire was a SystemException. */ public SystemException getSystemException(); /** * Check to see if the response is local. */ public boolean isLocal(); /** * Set Connection for the Request */ // COMMENT(Ram J) connections are not allowed to be reset. //public void setConnection(com.sun.corba.se.internal.iiop.Connection conn); /** * Obtain connection for the Request. */ public com.sun.corba.se.internal.iiop.Connection getConnection();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?