Home | History | Annotate | Download | only in message

Lines Matching defs:SIPResponse

646      * Creates a default SIPResponse message for this request. Note You must add the necessary
656 * @return A SIPResponse with the status and reason supplied, and a copy of all the original
660 public SIPResponse createResponse(int statusCode) {
662 String reasonPhrase = SIPResponse.getReasonPhrase(statusCode);
668 * Creates a default SIPResponse message for this request. Note You must add the necessary
679 * @return A SIPResponse with the status and reason supplied, and a copy of all the original
684 public SIPResponse createResponse(int statusCode, String reasonPhrase) {
685 SIPResponse newResponse;
689 newResponse = new SIPResponse();
698 newResponse.setReasonPhrase(SIPResponse.getReasonPhrase(statusCode));