com.oki.sip.engine
Class SipRequestParams

java.lang.Object
  extended bycom.oki.sip.engine.SipRequestParams
All Implemented Interfaces:
java.io.Serializable

public class SipRequestParams
extends java.lang.Object
implements java.io.Serializable

Container object used as an argument of SipRequestDispatcher. Stores arguments required to call the method to this object.

Since:
SSE 2.0
Version:
$Revision: 1.3 $ $Date: 2005/01/27 01:06:06 $
Author:
Oki Electric Industry Co.,Ltd.
See Also:
SipRequestDispatcher, Serialized Form

Constructor Summary
SipRequestParams()
          Constructor.
 
Method Summary
 java.lang.Object getParam(java.lang.String name)
          Method that retrieves an argument.
 void setParam(java.lang.String name, java.lang.Object value)
          Method that sets arguments.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SipRequestParams

public SipRequestParams()
Constructor.

Method Detail

setParam

public void setParam(java.lang.String name,
                     java.lang.Object value)
Method that sets arguments. Information in an existing argument with the same name as one set for a new argument is overwritten.

Parameters:
name - Name of an argument.
value - Value of an argument.

getParam

public java.lang.Object getParam(java.lang.String name)
Method that retrieves an argument.

Parameters:
name - Name of an argument.
Returns:
setParam Argument value set by a method. Returns null if a name set for "name" does not exist.