1. /*
  2. * @(#)LocateReplyOrReplyMessage.java 1.4 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.impl.protocol.giopmsgheaders;
  8. import org.omg.CORBA.SystemException;
  9. import com.sun.corba.se.spi.ior.IOR;
  10. public interface LocateReplyOrReplyMessage extends Message {
  11. int getRequestId();
  12. int getReplyStatus();
  13. SystemException getSystemException(String message);
  14. IOR getIOR();
  15. short getAddrDisposition();
  16. }
  17. // End of file.