JAIN-SIP 2.0 API

javax.sip.message
Interface SipRequestLine


public interface SipRequestLine

An interface for the SIP Request Line.

Since:
2.0
Version:
2.0

Method Summary
 String getMethod()
          Get the Method
 String getSipVersion()
          Get the SIP version.
 URI getUri()
          get the Request-URI.
 String getVersionMajor()
          Get the major verrsion number.
 String getVersionMinor()
          Get the minor version number.
 void setMethod(String method)
          Set the method member
 void setSipVersion(String version)
          Set the sipVersion member
 void setUri(URI uri)
          Set the URI.
 

Method Detail

getUri

URI getUri()
get the Request-URI.

Returns:
the request URI

getMethod

String getMethod()
Get the Method

Returns:
method string.

getSipVersion

String getSipVersion()
Get the SIP version.

Returns:
String

setUri

void setUri(URI uri)
Set the URI.

Parameters:
uri - URI to set.

setMethod

void setMethod(String method)
Set the method member

Parameters:
method - String to set

setSipVersion

void setSipVersion(String version)
Set the sipVersion member

Parameters:
version - version String to set

getVersionMajor

String getVersionMajor()
Get the major verrsion number.

Returns:
String major version number

getVersionMinor

String getVersionMinor()
Get the minor version number.

Returns:
String minor version number

JAIN-SIP 2.0 API


See conditions of use.
Submit a bug report or feature request.