Package conversation.service

Examples of conversation.service.ConversationalServiceStatelessImpl


            new ConversationalClientServiceFactory(ConversationalServiceStatefulImpl.class, bundleContext, 5);
        bundleContext.registerService(ConversationalService.class.getName(), statefulService, serviceProps);
       
        serviceProps = new Hashtable<String, Object>();
        serviceProps.put("component.name", "ConversationalServiceStateless");
        ConversationalServiceStatelessImpl statelessService = new ConversationalServiceStatelessImpl();
        bundleContext.registerService(ConversationalService.class.getName(), statelessService, serviceProps);
       
       
    }
View Full Code Here

TOP

Related Classes of conversation.service.ConversationalServiceStatelessImpl

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.