Package org.apache.karaf.features.internal.repository

Examples of org.apache.karaf.features.internal.repository.XmlRepository$XmlLoader


            url = url.trim();
            if (!url.isEmpty()) {
                if (url.startsWith("json:")) {
                    repositories.add(new JsonRepository(url.substring("json:".length())));
                } else if (url.startsWith("xml:")) {
                    repositories.add(new XmlRepository(url.substring("xml:".length())));
                } else {
                    logger.warn("Unrecognized resource repository: " + url);
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.karaf.features.internal.repository.XmlRepository$XmlLoader

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.