Package | Description |
---|---|
javax.servlet.sip |
The javax.servlet.sip package is the API for the SIP Servlets developed under JSR 359, this v2.0 version updates v1.1 developed under JSR 289.
|
Modifier and Type | Method and Description |
---|---|
SipApplicationSession |
SipFactory.createApplicationSession()
Returns a new
SipApplicationSession . |
SipApplicationSession |
SipFactory.createApplicationSessionByKey(String sipApplicationKey)
Returns a new
SipApplicationSession identified by the specified
SipApplicationKey. |
SipApplicationSession |
SipServletMessage.getApplicationSession()
Returns the application session to which this message belongs.
|
SipApplicationSession |
SipApplicationSessionBindingEvent.getApplicationSession()
Deprecated.
Returns the application session to or from which the object is bound or unbound.
|
SipApplicationSession |
SipApplicationSessionEvent.getApplicationSession()
Returns the expired session object.
|
SipApplicationSession |
ServletTimer.getApplicationSession()
Returns the application session associated with this
ServletTimer . |
SipApplicationSession |
SipSession.getApplicationSession()
Returns the application session with which this
SipSession
is associated. |
SipApplicationSession |
ConvergedHttpSession.getApplicationSession()
Returns the parent SipApplicationSession if it exists, if none exists
then a new one is created and returned after associating it with the
converged http session.
|
SipApplicationSession |
SipServletMessage.getApplicationSession(boolean create)
Returns the app session to which this message belongs.
|
SipApplicationSession |
SipSessionsUtil.getApplicationSessionById(String applicationSessionId)
Returns the SipApplicationSession for a given applicationSessionId.
|
SipApplicationSession |
SipSessionsUtil.getApplicationSessionByKey(String applicationSessionKey,
boolean create)
Returns the SipApplicationSession for a given session
applicationSessionKey . |
SipApplicationSession |
SipSessionsUtil.getCurrentApplicationSession()
Returns the application session on the current thread's context.
|
Modifier and Type | Method and Description |
---|---|
SipServletRequest |
SipFactory.createRequest(SipApplicationSession appSession,
String method,
Address from,
Address to)
Returns a new request object with the specified request method, From,
and To headers.
|
SipServletRequest |
SipFactory.createRequest(SipApplicationSession appSession,
String method,
String from,
String to)
Returns a new request object with the specified request method, From,
and To headers.
|
SipServletRequest |
SipFactory.createRequest(SipApplicationSession appSession,
String method,
URI from,
URI to)
Returns a new request object with the specified request method, From,
and To headers.
|
ServletTimer |
TimerService.createTimer(SipApplicationSession appSession,
long delay,
boolean isPersistent,
Serializable info)
Creates a one-time
ServletTimer and schedules it to
expire after the specified delay. |
ServletTimer |
TimerService.createTimer(SipApplicationSession appSession,
long delay,
long period,
boolean fixedDelay,
boolean isPersistent,
Serializable info)
Creates a repeating
ServletTimer and schedules it to
expire after the specified delay and then again at approximately
regular intervals. |
Constructor and Description |
---|
SipApplicationSessionBindingEvent(SipApplicationSession session,
String name)
Deprecated.
Constructs an event that notifies an object that it has been bound
to or unbound from an application session.
|
SipApplicationSessionEvent(SipApplicationSession appSession)
Creates a new
SipApplicationSessionEvent object. |
Copyright © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.