Package es.udc.myportal.services.stocknews.model.delegate

Examples of es.udc.myportal.services.stocknews.model.delegate.StockNewsFacadeDelegate


            for (int i=0; i<symbols.length; i++) {
                symbolsAsCollection.add(symbols[i]);
            }

            /* Invoke the remote service using the local service facade */
            StockNewsFacadeDelegate stockNewsFacade =
                new StockNewsFacadeDelegate();       
            Collection stockNews = stockNewsFacade.getStockNews(
                    symbolsAsCollection, maxHeadlines);

            /* Format response */
            request.setAttribute("stockNews", stockNews);
            request.setAttribute("maxHeadlines", new Integer(maxHeadlines));
View Full Code Here

TOP

Related Classes of es.udc.myportal.services.stocknews.model.delegate.StockNewsFacadeDelegate

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.