001/* 002 * CDDL HEADER START 003 * 004 * The contents of this file are subject to the terms of the 005 * Common Development and Distribution License, Version 1.0 only 006 * (the "License"). You may not use this file except in compliance 007 * with the License. 008 * 009 * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt 010 * or http://forgerock.org/license/CDDLv1.0.html. 011 * See the License for the specific language governing permissions 012 * and limitations under the License. 013 * 014 * When distributing Covered Code, include this CDDL HEADER in each 015 * file and include the License file at legal-notices/CDDLv1_0.txt. 016 * If applicable, add the following below this CDDL HEADER, with the 017 * fields enclosed by brackets "[]" replaced with your own identifying 018 * information: 019 * Portions Copyright [yyyy] [name of copyright owner] 020 * 021 * CDDL HEADER END 022 * 023 * 024 * Copyright 2006-2008 Sun Microsystems, Inc. 025 * Portions Copyright 2015 ForgeRock AS 026 */ 027package javax.jnlp; 028 029import java.io.IOException; 030import java.net.URL; 031 032/** 033 * This is just an empty implementation of DownloadService. It does define 034 * only the methods of the JNLP API used in the class 035 * org.opends.quicksetup.webstart.WebstartDownloader. 036 * 037 * We have chosen to do this because we we require the JNLP API to be compiled 038 * but the location of the javaws.jar depends on the java distribution, so 039 * instead of trying to figure out where javaws.jar is on the java distribution 040 * that is being used to compile the source, we just add these classes to the 041 * build-tools.jar file that will be used to compile que QuickSetup. 042 * 043 * It must be noted that the class 044 * org.opends.quicksetup.webstart.WebstartDownloader will be only executed in 045 * the context of a Java Web Start application and that in this case the 046 * javaws.jar will be provided by the Java Web Start Runtime environment. So 047 * we are not providing the javaws-stub.jar during runtime: it is used only 048 * for compilation. 049 */ 050public interface DownloadService { 051 boolean isResourceCached(URL url, String version); 052 void removeResource(URL url, String version) throws IOException; 053 void loadResource(URL ref, String version, DownloadServiceListener listener) throws IOException; 054}