Package org.dspace.app.cris.statistics

Examples of org.dspace.app.cris.statistics.StatSyndicationFeed


        Context context = UIUtil.obtainContext(arg0);
        int numsFeed = ConfigurationManager.getIntProperty("webui.feed.stats",
                4);
        SummaryStatBean summary = statSubscribeService.getStatBean(context,
                uid, type, freq, numsFeed);
        StatSyndicationFeed feed = new StatSyndicationFeed();

        if (StringUtils.isEmpty(feedType) || !formats.contains(feedType))
        {
            feedType = formats.get(0);
        }
        feed.setType(feedType);
        feed.populate(arg0, summary);
        return feed;
    }
View Full Code Here

TOP

Related Classes of org.dspace.app.cris.statistics.StatSyndicationFeed

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.