Home | History | Annotate | Download | only in message

Lines Matching refs:SIPRequest

73 public final class SIPRequest extends SIPMessage implements javax.sip.message.Request, RequestExt {
164 * Get the Request Line of the SIPRequest.
186 public SIPRequest() {
201 sprint(SIPRequest.class.getName());
481 SIPRequest retval = (SIPRequest) super.clone();
499 SIPRequest that = (SIPRequest) other;
535 SIPRequest that = (SIPRequest) matchObj;
619 * @return a byte array containing the SIPRequest encoded as a byte array.
748 * @return A CANCEL SIPRequest constructed according to RFC3261 section 9.1
753 public SIPRequest createCancelRequest() throws SipException {
774 SIPRequest cancel = new SIPRequest();
805 * Creates a default ACK SIPRequest message for this original request. Note that the
806 * defaultACK SIPRequest does not include the content of the original SIPRequest. If
812 * @return A SIPRequest with an ACK method.
814 public SIPRequest createAckRequest(To responseToHeader) {
815 SIPRequest newRequest;
819 newRequest = new SIPRequest();
894 * @return A SIPRequest with an ACK method.
901 public final SIPRequest createErrorAck(To responseToHeader) throws SipException,
916 SIPRequest newRequest = new SIPRequest();
945 * Create a new default SIPRequest from the original request. Warning: the newly created
946 * SIPRequest, shares the headers of this request but we generate any new headers that we need
976 public SIPRequest createSIPRequest(RequestLine requestLine, boolean switchHeaders) {
977 SIPRequest newRequest = new SIPRequest();
1051 public SIPRequest createBYERequest(boolean switchHeaders) {
1063 public SIPRequest createACKRequest() {