KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)LocateReplyMessage.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 org.omg.CORBA.SystemException JavaDoc;
11 import com.sun.corba.se.spi.ior.IOR;
12
13 /**
14  * This interface captures the LocateReplyMessage contract.
15  *
16  * @author Ram Jeyaraman 05/14/2000
17  * @version 1.0
18  */

19
20 public interface LocateReplyMessage extends Message, LocateReplyOrReplyMessage {
21
22     int UNKNOWN_OBJECT = 0;
23     int OBJECT_HERE = 1;
24     int OBJECT_FORWARD = 2;
25     int OBJECT_FORWARD_PERM = 3; // 1.2
26
int LOC_SYSTEM_EXCEPTION = 4; // 1.2
27
int LOC_NEEDS_ADDRESSING_MODE = 5; // 1.2
28
}
29
Popular Tags