Package org.springmodules.feedxt.domain

Examples of org.springmodules.feedxt.domain.Entry


                // Get the feed from user's subscriptions:
                Feed feed = this.getFeedFromSubscriptionName(subscriptionName);
                if (feed != null) {
                    // Get the feed entry at the corresponding index:
                    int entryIndex = Integer.parseInt(event.getParameters().get("entryIndex"));
                    Entry entry = (Entry) feed.getEntries().get(entryIndex);
                   
                    // Set the entry object in the request:
                    event.getHttpRequest().setAttribute("entry", entry);
                    // Render the entry via external JSP content:
                    JspComponent jsp = new JspComponent(event.getHttpRequest(), "/personal/includes/entryPanel.page");
View Full Code Here

TOP

Related Classes of org.springmodules.feedxt.domain.Entry

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.