/* * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.corba.se.impl.protocol.giopmsgheaders; import com.sun.corba.se.spi.ior.ObjectKey; /** * This interface captures the LocateRequestMessage contract. * * @author Ram Jeyaraman 05/14/2000 */ public interface LocateRequestMessage extends Message { int getRequestId(); ObjectKey getObjectKey(); }