All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.web.servlet.view.feed.AbstractRssFeedView Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

The newest version!
/*
 *  Copyright 2008-2010 biaoping.yin
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package org.frameworkset.web.servlet.view.feed;

import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.sun.syndication.feed.WireFeed;
import com.sun.syndication.feed.rss.Channel;
import com.sun.syndication.feed.rss.Item;

/**
 * Abstract superclass for RSS Feed views, using java.net's
 * ROME package.
 *
 * 

Application-specific view classes will extend this class. * The view will be held in the subclass itself, not in a template. * *

Main entry points are the {@link #buildFeedMetadata(Map, WireFeed , HttpServletRequest)} * and {@link #buildFeedItems(Map, HttpServletRequest, HttpServletResponse)}. * *

Thanks to Jettro Coenradie and Sergio Bossa for the original feed view prototype! * * @author Arjen Poutsma * @author Juergen Hoeller * @since 3.0 * @see #buildFeedMetadata(Map, WireFeed , HttpServletRequest) * @see #buildFeedItems(Map, HttpServletRequest, HttpServletResponse) */ public abstract class AbstractRssFeedView extends AbstractFeedView { public AbstractRssFeedView() { setContentType("application/rss+xml"); } /** * Create a new Channel instance to hold the entries. *

By default returns an RSS 2.0 channel, but the subclass can specify any channel. */ @Override protected Channel newFeed() { return new Channel("rss_2.0"); } /** * Invokes {@link #buildFeedItems(Map, HttpServletRequest, HttpServletResponse)} * to get a list of feed items. */ @Override protected final void buildFeedEntries(Map model, Channel channel, HttpServletRequest request, HttpServletResponse response) throws Exception { List items = buildFeedItems(model, request, response); channel.setItems(items); } /** * Subclasses must implement this method to build feed items, given the model. *

Note that the passed-in HTTP response is just supposed to be used for * setting cookies or other HTTP headers. The built feed itself will automatically * get written to the response after this method returns. * @param model the model Map * @param request in case we need locale etc. Shouldn't look at attributes. * @param response in case we need to set cookies. Shouldn't write to it. * @return the feed items to be added to the feed * @throws Exception any exception that occured during document building * @see Item */ protected abstract List buildFeedItems( Map model, HttpServletRequest request, HttpServletResponse response) throws Exception; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy