Package org.mule.module.rss

Source Code of org.mule.module.rss.RssEntryCreatorComponent

/*
* $Id: RssEntryCreatorComponent.java 20321 2010-11-24 15:21:24Z dfeist $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.rss;

import com.sun.syndication.feed.synd.SyndEntry;
import com.sun.syndication.feed.synd.SyndEntryImpl;

import java.util.ArrayList;
import java.util.List;

//Currently not used
public class RssEntryCreatorComponent
{

    public SyndEntry readFeed(String title, String content) throws Exception
    {
        SyndEntry entry = new SyndEntryImpl();
        entry.setTitle(title);
        List contents = new ArrayList();
        contents.add(content);
        entry.setContents(contents);
        entry.setAuthor("Ross Mason");
        return entry;
    }
}
TOP

Related Classes of org.mule.module.rss.RssEntryCreatorComponent

TOP
Copyright © 2018 www.massapi.com. 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.