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.net.URL; 030 031/** 032 * This is the interface definition of DownloadServiceListener. 033 * 034 * We have chosen to do this because we we require the JNLP API to be compiled 035 * but the location of the javaws.jar depends on the java distribution, so 036 * instead of trying to figure out where javaws.jar is on the java distribution 037 * that is being used to compile the source, we just add these classes to the 038 * build-tools.jar file that will be used to compile que QuickSetup. 039 * 040 * It must be noted that the class 041 * org.opends.quicksetup.webstart.WebstartDownloader will be only executed in 042 * the context of a Java Web Start application and that in this case the 043 * javaws.jar will be provided by the Java Web Start Runtime environment. So 044 * we are not providing the javaws-stub.jar during runtime: it is used only 045 * for compilation. 046 */ 047public interface DownloadServiceListener { 048 void downloadFailed(URL url, String version); 049 void progress(URL url, String version, long readSoFar, long total, int overallPercent); 050 void upgradingArchive(URL url, String version, int patchPercent, int overallPercent); 051 void validating(URL url, String version, long entry, long total, int overallPercent); 052}