Methods Summary |
---|
public AddressFactory | createAddressFactory()Creates a address factory.
if (addressFactory != null)
return addressFactory;
addressFactory = new AddressFactory();
return addressFactory;
|
public HeaderFactory | createHeaderFactory()Creates a header factory.
if (headerFactory != null)
return headerFactory;
headerFactory = new HeaderFactory();
return headerFactory;
|
public MessageFactory | createMessageFactory()Creates a mesage factory.
if (msgFactory != null)
return msgFactory;
msgFactory = new MessageFactory();
return msgFactory;
|
public SipStack | createSipStack(ConfigurationProperties properties, com.sun.midp.security.SecurityToken classSecurityToken)Creates a SIP Stack based on requested properties.
return new SipStack(properties, classSecurityToken);
|
public static gov.nist.siplite.SipFactory | getInstance()Gets a handle the the SIP factory handler.
if (myFactory == null) myFactory = new SipFactory();
return myFactory;
|