Lines Matching refs:statusCode

260      * Creates a new Response message of type specified by the statusCode
264 * @param statusCode -
265 * the new integer of the statusCode value of this Message.
284 * while parsing the statusCode or the body.
286 public Response createResponse(int statusCode, CallIdHeader callId,
297 statusLine.setStatusCode(statusCode);
298 String reasonPhrase = SIPResponse.getReasonPhrase(statusCode);
300 // throw new ParseException(statusCode + " Unkown ", 0);
317 * Creates a new Response message of type specified by the statusCode
321 * @param statusCode -
322 * the new integer of the statusCode value of this Message.
341 * while parsing the statusCode or the body.
343 public Response createResponse(int statusCode, CallIdHeader callId,
353 sipResponse.setStatusCode(statusCode);
369 * Creates a new Response message of type specified by the statusCode
373 * @param statusCode -
374 * the new integer of the statusCode value of this Message.
388 * while parsing the statusCode.
390 public Response createResponse(int statusCode, CallIdHeader callId,
400 sipResponse.setStatusCode(statusCode);
416 * Creates a new Response message of type specified by the statusCode
420 * @param statusCode -
421 * the new integer of the statusCode value of this Message.
431 * while parsing the statusCode or the body.
433 public Response createResponse(int statusCode, Request request,
440 SIPResponse sipResponse = sipRequest.createResponse(statusCode);
449 * Creates a new Response message of type specified by the statusCode
453 * @param statusCode -
454 * the new integer of the statusCode value of this Message.
464 * while parsing the statusCode or the body.
466 public Response createResponse(int statusCode, Request request,
473 SIPResponse sipResponse = sipRequest.createResponse(statusCode);
483 * Creates a new Response message of type specified by the statusCode
487 * @param statusCode -
488 * the new integer of the statusCode value of this Message.
493 * while parsing the statusCode.
495 public Response createResponse(int statusCode, Request request)
504 SIPResponse sipResponse = sipRequest.createResponse(statusCode);
572 * Creates a new Response message of type specified by the statusCode
576 * @param statusCode
577 * the new integer of the statusCode value of this Message.
596 * while parsing the statusCode or the body.
598 public Response createResponse(int statusCode, CallIdHeader callId,
608 statusLine.setStatusCode(statusCode);
609 String reason = SIPResponse.getReasonPhrase(statusCode);
611 throw new ParseException(statusCode + " Unknown", 0);
628 * Creates a new Response message of type specified by the statusCode
632 * @param statusCode
633 * the new integer of the statusCode value of this Message.
652 * while parsing the statusCode or the body.
654 public Response createResponse(int statusCode, CallIdHeader callId,
664 statusLine.setStatusCode(statusCode);
665 String reason = SIPResponse.getReasonPhrase(statusCode);
667 throw new ParseException(statusCode + " : Unknown", 0);