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