Example usage for javax.servlet Servlet interface-usage

List of usage examples for javax.servlet Servlet interface-usage

Introduction

In this page you can find the example usage for javax.servlet Servlet interface-usage.

Usage

From source file org.pentaho.platform.dataaccess.datasource.wizard.service.impl.UploadFileDebugServlet.java

public class UploadFileDebugServlet extends HttpServlet implements Servlet {

    private static final long serialVersionUID = 8305367618713715640L;

    private static final long MAX_FILE_SIZE = 300000;

From source file org.springframework.http.server.reactive.ServletHttpHandlerAdapter.java

/**
 * Adapt {@link HttpHandler} to an {@link HttpServlet} using Servlet Async
 * support and Servlet 3.1 non-blocking I/O.
 *
 * @author Arjen Poutsma
 * @author Rossen Stoyanchev

From source file org.paxle.tools.logging.impl.gui.Log4jView.java

@Component(metatype = false, immediate = true, label = "Logging Servlet", description = "A Servlet to display log-messages")
@Service(Servlet.class)
@Properties({ @Property(name = "org.paxle.servlet.path", value = "/log/log4j"),
        @Property(name = "org.paxle.servlet.doUserAuth", boolValue = true) })
public class Log4jView extends VelocityLayoutServlet implements Servlet {
    private static final long serialVersionUID = 1L;

From source file net.danielkvasnicka.flower.FlowerDispatcherServlet.java

/**
 * This is the heart of Flower.
 * This servlet receives the URL, uses the resolver to get the bean metadata, loads
 * the bean, runs the appropriate method and then sends the response.
 * 
 * @author Daniel Kvasnicka jr.

From source file com.appeligo.showfiles.FilesByTime.java

/**
 * Servlet implementation class for Servlet: ShowFile
 *
 */
public class FilesByTime extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet {

From source file com.flexive.war.servlet.CeFileUpload.java

public class CeFileUpload implements Servlet {

    private ServletConfig servletConfig = null;

    @Override
    public void init(ServletConfig servletConfig) throws ServletException {

From source file org.apache.wookie.WidgetWebMenuServlet.java

/**
 * WidgetWebMenuServlet
 *
 * @author Paul Sharples
 * @version $Id: WidgetWebMenuServlet.java,v 1.2 2009-07-28 16:05:23 scottwilson Exp $
 */

From source file org.manalang.monkeygrease.utils.HttpClient.java

/**
 * HttpClient for Monkeygrease. Allows for cross-domain XMLHttpRequest using the
 * Monkeygrease JavaScript library which relies on Prototype.
 * 
 * This servlet is dependent on the following Apache Jakarta Commons libraries:
 * <ul>

From source file org.fao.fenix.web.modules.core.server.upload.CodeListUploaderServlet.java

/** This servlet imports a Coding System with no metadata associated, it creates one starting from user's inputs. */
@SuppressWarnings("serial")
public class CodeListUploaderServlet extends HttpServlet implements Servlet {

    private final static Logger LOGGER = Logger.getLogger(CodeListUploaderServlet.class);

From source file javax.faces.webapp.FacesServlet.java

/**
 * see Javadoc of <a href="http://java.sun.com/j2ee/javaserverfaces/1.1_01/docs/api/index.html">JSF Specification</a>
 *
 * @author Manfred Geiler (latest modification by $Author: grantsmith $)
 * @version $Revision: 482726 $ $Date: 2006-12-05 19:02:43 +0100 (Di, 05 Dez 2006) $
 */