/**
  * Creates a new ServerRequestInfo implementation. The constructor is package scope since no other
  * package need create an instance of this class.
  */
 ServerRequestInfoImpl(ORB myORB) {
   super(myORB);
   startingPointCall = CALL_RECEIVE_REQUEST_SERVICE_CONTEXT;
   intermediatePointCall = CALL_RECEIVE_REQUEST;
   endingPointCall = CALL_SEND_REPLY;
   serverRequestId = myORB.getPIHandler().allocateServerRequestId();
 }