Package com.nirima.jenkins.repo

Examples of com.nirima.jenkins.repo.RepositoryDirectory


            // Ignore breakdown case if '/'
            if (pathElements.length > 1 || pathElements[0].length() > 0) {
                for (String element : pathElements) {
                    log.trace("Found element {}", element);
                    if (currentItem instanceof RepositoryDirectory) {
                        RepositoryDirectory currentDirectory = (RepositoryDirectory) currentItem;
                        currentItem = currentDirectory.getChild(element);

                        if( currentItem == null ) {
                            log.error("Could not find item {} in element {}", element, currentDirectory);
                            return null;
                        }
View Full Code Here

TOP

Related Classes of com.nirima.jenkins.repo.RepositoryDirectory

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.