public ServiceRejectedEvent(
     HttpServletRequest httpServletRequest,
     RejectedServiceResponse rejectedServiceResponse,
     RopRequestContext ropRequestContext) {
   super(rejectedServiceResponse, ropRequestContext.getRopContext());
   this.httpServletRequest = httpServletRequest;
   this.rejectedServiceResponse = rejectedServiceResponse;
   this.ropRequestContext = ropRequestContext;
 }
 public ServiceTimeoutEvent(
     HttpServletRequest httpServletRequest,
     ServiceTimeoutErrorResponse response,
     RopRequestContext ropRequestContext) {
   super(response, ropRequestContext.getRopContext());
   this.httpServletRequest = httpServletRequest;
   this.serviceTimeoutErrorResponse = response;
   this.ropRequestContext = ropRequestContext;
 }