1 7 8 package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 10 import org.omg.CORBA.Principal ; 11 import com.sun.corba.se.spi.ior.ObjectKey; 12 import com.sun.corba.se.spi.servicecontext.ServiceContexts; 13 14 20 21 public interface RequestMessage extends Message { 22 23 byte RESPONSE_EXPECTED_BIT = 0x01; 24 25 ServiceContexts getServiceContexts(); 26 int getRequestId(); 27 boolean isResponseExpected(); 28 byte[] getReserved(); 29 ObjectKey getObjectKey(); 30 String getOperation(); 31 Principal getPrincipal(); 32 33 void setThreadPoolToUse(int poolToUse); 35 36 37 } | Popular Tags |