blob: 24d49240dffbebd180fe53fdb6538d44a3ea5eb2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2015 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.internal.webapp.service;
import org.eclipse.help.internal.webapp.servlet.LiveHelpServlet;
/**
* Handles the live help action requests with the specified
* <code>pluginID</code>, <code>class</code> and respective <code>args</code>.
*
* <p>Extends the {@link org.eclipse.help.internal.webapp.servlet.LiveHelpServlet}
* servlet.
*
* @param pluginID - specifying the plugin id
* @param class - specifying the class
* @param arg - (Optional) specifying the arguments for the
* live help extension
*
* @version $Version$
*
**/
public class LiveHelpService extends LiveHelpServlet {
private static final long serialVersionUID = 1L;
}