FileDocCategorySizeDatePackage
ConfigurationProperties.javaAPI DocphoneME MR2 API (J2ME)2435Wed May 02 18:00:42 BST 2007gov.nist.siplite

ConfigurationProperties

public class ConfigurationProperties extends Hashtable
Configuration properties. + * Configuration properties are set in StackConnector before initializing + * a sipstack + * Following are mandatory Configuration Properties : + * + * javax.sip.IP_ADDRESS + * javax.sip.STACK_NAME + * + * Following are optional Configuration Properties : + * + * javax.sip.OUTBOUND_PROXY + * javax.sip.EXTENSION_METHODS + * gov.nist.javax.sip.LOG_FILE_NAME + * gov.nist.javax.sip.TRACE_LEVEL + * gov.nist.javax.sip.BAD_MESSAGE_LOG + * gov.nist.javax.sip.SERVER_LOG + * gov.nist.javax.sip.MAX_CONNECTIONS + * gov.nist.javax.sip.THREAD_POOL_SIZE + * gov.nist.javax.sip.MAX_SERVER_TRANSACTIONS

Fields Summary
Constructors Summary
public ConfigurationProperties()
Default constructor.

        super();
    
Methods Summary
public java.lang.StringgetProperty(java.lang.String name)
Gets a property value.

param
name key for the property
return
the value of the property

        return (String)super.get(name);
    
public voidsetProperty(java.lang.String name, java.lang.String value)
Sets a property value.

param
name the key for theproperty
param
value the value for the property

        super.put(name, value);