563N/A/*
563N/A * CDDL HEADER START
563N/A *
563N/A * The contents of this file are subject to the terms of the
563N/A * Common Development and Distribution License, Version 1.0 only
563N/A * (the "License"). You may not use this file except in compliance
563N/A * with the License.
563N/A *
563N/A * You can obtain a copy of the license at
563N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE
563N/A * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
563N/A * See the License for the specific language governing permissions
563N/A * and limitations under the License.
563N/A *
563N/A * When distributing Covered Code, include this CDDL HEADER in each
563N/A * file and include the License file at
563N/A * trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
563N/A * add the following below this CDDL HEADER, with the fields enclosed
873N/A * by brackets "[]" replaced with your own identifying information:
563N/A * Portions Copyright [yyyy] [name of copyright owner]
563N/A *
563N/A * CDDL HEADER END
563N/A *
563N/A *
3231N/A * Copyright 2006-2008 Sun Microsystems, Inc.
563N/A */
563N/A
563N/Apackage javax.jnlp;
563N/A
563N/A/**
563N/A * This is just an empty implementation of UnavailableServiceException. This
563N/A * class is used in the class
563N/A * org.opends.quicksetup.webstart.WebstartDownloader.
563N/A *
563N/A * We have chosen to do this because we we require the JNLP API to be compiled
563N/A * but the location of the javaws.jar depends on the java distribution, so
563N/A * instead of trying to figure out where javaws.jar is on the java distribution
563N/A * that is being used to compile the source, we just add these classes to the
563N/A * build-tools.jar file that will be used to compile que QuickSetup.
563N/A *
563N/A * It must be noted that the class
563N/A * org.opends.quicksetup.webstart.WebstartDownloader will be only executed in
563N/A * the context of a Java Web Start application and that in this case the
563N/A * javaws.jar will be provided by the Java Web Start Runtime environment. So
563N/A * we are not providing the javaws-stub.jar during runtime: it is used only
563N/A * for compilation.
563N/A *
563N/A */
563N/Apublic class UnavailableServiceException extends Exception {
563N/A private static final long serialVersionUID = 286996071734385910L;
563N/A}