Package com.nirima.jenkins.repo

Examples of com.nirima.jenkins.repo.RepositoryContent


                printDirEntry(os, element);
            }

            printFooter(os);
        } else {
            RepositoryContent content = (RepositoryContent) currentItem;
            String contentType = content.getContentType();
            if( contentType != null )
                rsp.setContentType(contentType);

            InputStream is = content.getContent();
            // DL Element
            IOUtils.copy(is, os);

            os.flush();
View Full Code Here

TOP

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

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.