HomeSort by relevance Sort by last modified time
    Searched defs:SIPResponse (Results 1 - 2 of 2) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPResponse.java 71 public final class SIPResponse
379 public SIPResponse() {
393 sprint(SIPResponse.class.getCanonicalName());
481 SIPResponse retval = (SIPResponse) super.clone();
495 SIPResponse that = (SIPResponse) other;
511 SIPResponse that = (SIPResponse) matchObj;
SIPRequest.java 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))
    [all...]

Completed in 353 milliseconds