KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > protocol > giopmsgheaders > LocateRequestMessage


1 /*
2  * @(#)LocateRequestMessage.java 1.9 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
8 package com.sun.corba.se.impl.protocol.giopmsgheaders;
9
10 import com.sun.corba.se.spi.ior.ObjectKey;
11
12 /**
13  * This interface captures the LocateRequestMessage contract.
14  *
15  * @author Ram Jeyaraman 05/14/2000
16  * @version 1.0
17  */

18
19 public interface LocateRequestMessage extends Message {
20     int getRequestId();
21     ObjectKey getObjectKey();
22 }
23
Popular Tags