Package hudson.model.DownloadService

Examples of hudson.model.DownloadService.Downloadable


    @Override
    protected void setUp() throws Exception {
        super.setUp();
        // this object receives the submission.
        // to bypass the URL restriction, we'll trigger downloadService.download ourselves
        job = new Downloadable("test", "UNUSED");
        Downloadable.all().add(job);
    }
View Full Code Here


        protected DescriptorImpl() {
            Downloadable.all().add(createDownloadable());
        }

        protected Downloadable createDownloadable() {
            return new Downloadable(getId());
        }
View Full Code Here

        protected DescriptorImpl() {
            Downloadable.all().add(createDownloadable());
        }

        protected Downloadable createDownloadable() {
            return new Downloadable(getId());
        }
View Full Code Here

TOP

Related Classes of hudson.model.DownloadService.Downloadable

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.