Examples of MDManager


Examples of com.salas.bb.discovery.MDManager

    protected static void discover(IArticle[] articles)
    {
        LinkedHashSet<String> articleLinks = new LinkedHashSet<String>();
        for (IArticle article : articles) articleLinks.addAll(article.getLinks());

        MDManager mdmanager = GlobalController.SINGLETON.getMetaDataManager();
        for (String link : articleLinks)
        {
            try
            {
                // Lookup or discover the link.
                // If it's already known, the result will be returned without
                // any overhead; if not, the discovery will be scheduled.
                mdmanager.lookupOrDiscover(new URL(link));
            } catch (MalformedURLException e1)
            {
                // Not a problem, just skip
            }
        }
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.