Package org.apache.camel.component.sip.listener

Examples of org.apache.camel.component.sip.listener.SipPresenceAgentListener


        super.doStart();
        Properties properties = configuration.createInitialProperties();
        setSipStack(configuration.getSipFactory().createSipStack(properties));
       
        configuration.parseURI();
        sipPresenceAgentListener = new SipPresenceAgentListener(this);
        configuration.setListeningPoint(
                sipStack.createListeningPoint(configuration.getFromHost(),
                    Integer.valueOf(configuration.getFromPort()).intValue(),
                    configuration.getTransport()));
        provider = getSipStack().createSipProvider(configuration.getListeningPoint());
View Full Code Here

TOP

Related Classes of org.apache.camel.component.sip.listener.SipPresenceAgentListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.