Examples of RSSReply


Examples of org.mapache.business.reply.RSSReply

            replies.add(fetchRecordInRSSReplyObject(resultSet));
        }
    }

    private RSSReply fetchRecordInRSSReplyObject(ResultSet record) throws SQLException {
        RSSReply reply = new RSSReply();
        reply.setReplyID(record.getInt("CommentID"));
        reply.setContent(record.getString("Comment"));
        reply.setCreationDate(FormatterUtil.stringToDate(record.getString("CreationDate")));
        reply.setUserName(record.getString("UserName"));
        reply.setUserEmail(record.getString("UserEmail"));
        reply.setUserHomePage(record.getString("UserHomePage"));
        reply.setTitle(record.getString("Title"));
        return reply;
    }
View Full Code Here
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.