Package org.socialmusicdiscovery.server.business.service.browse

Examples of org.socialmusicdiscovery.server.business.service.browse.BrowseService


            // /META-INF/services/org.socialmusicdiscovery.server.api.mediaimport.ImageProvider
            Map<String, BrowseService> browseServices = new HashMap<String, BrowseService>();
            ServiceLoader<BrowseService> pluginLoader = ServiceLoader.load(BrowseService.class);
            Iterator<BrowseService> it = pluginLoader.iterator();
            while (it.hasNext()) {
                BrowseService browseService = it.next();
                serviceManager.addBrowseService(browseService.getObjectType(), browseService.getClass());
            }

        }
        return serviceManager;
    }
View Full Code Here

TOP

Related Classes of org.socialmusicdiscovery.server.business.service.browse.BrowseService

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.