org.encuestame.core.rss.EnMeRssReader.java Source code

Java tutorial

Introduction

Here is the source code for org.encuestame.core.rss.EnMeRssReader.java

Source

/*
 ************************************************************************************
 * Copyright (C) 2001-2011 encuestame: system online surveys Copyright (C) 2011
 * encuestame Development Team.
 * Licensed under the Apache Software License version 2.0
 * 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.encuestame.core.rss;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.integration.support.MessageBuilder;
import org.springframework.integration.core.MessageSource;
import org.springframework.messaging.Message;

/**
 * Rss Reader.
 * @author Picado, Juan juanATencuestame.org
 * @since Jul 2, 2010 10:03:26 AM
 * @version $Id:$
 */
public class EnMeRssReader implements MessageSource {

    private Log log = LogFactory.getLog(this.getClass());

    public Message<String> receive() {
        log.debug("readRssFeed method is called");
        return MessageBuilder.withPayload("test").setHeader("feedid", "thefeed").build();
    }
}