1 7 8 package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 10 import com.sun.corba.se.spi.servicecontext.ServiceContexts; 11 import org.omg.CORBA.SystemException ; 12 import com.sun.corba.se.spi.ior.IOR; 13 14 20 21 public interface ReplyMessage extends Message, LocateReplyOrReplyMessage { 22 23 int NO_EXCEPTION = 0; 26 int USER_EXCEPTION = 1; 27 int SYSTEM_EXCEPTION = 2; 28 int LOCATION_FORWARD = 3; 29 int LOCATION_FORWARD_PERM = 4; int NEEDS_ADDRESSING_MODE = 5; 32 ServiceContexts getServiceContexts(); 33 void setServiceContexts( ServiceContexts sc ); 34 void setIOR( IOR newIOR ); 35 } 36 | Popular Tags |