/* * @(#)LocateReplyOrReplyMessage.java 1.4 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.impl.protocol.giopmsgheaders; import org.omg.CORBA.SystemException; import com.sun.corba.se.spi.ior.IOR; public interface LocateReplyOrReplyMessage extends Message { int getRequestId(); int getReplyStatus(); SystemException getSystemException(String message); IOR getIOR(); short getAddrDisposition(); } // End of file.