List of usage examples for javax.servlet.http HttpServlet subclass-usage
From source file delete.java
/** * * @author Mahe */ @WebServlet(urlPatterns = { "/delete" }) public class delete extends HttpServlet {
From source file Util.BookGenresServlet.java
/** * * @author Ryan Hothan */ @WebServlet(name = "BookGenresServlet", urlPatterns = { "/BookGenresServlet" }) public class BookGenresServlet extends HttpServlet {
From source file com.pureinfo.tgirls.servlet.CookieTestServlet.java
public class CookieTestServlet extends HttpServlet { @Override protected void doGet(HttpServletRequest _req, HttpServletResponse _resp) throws ServletException, IOException { // TODO Auto-generated method stub this.doGet(_req, _resp);
From source file com.enonic.cms.web.portal.PortalServlet.java
public final class PortalServlet extends HttpServlet { private final static List<String> ALLOWED_HTTP_METHODS = Arrays.asList("GET", "POST", "HEAD", "OPTIONS"); private RequestDispatcher dispatcher; @Override
From source file MyPack.AjaxAlbumList.java
/** * * @author Arpit Kesharwani */ @WebServlet(name = "AjaxAlbumList", urlPatterns = { "/AjaxAlbumList" }) public class AjaxAlbumList extends HttpServlet {
From source file com.sdapp.server.LoginServlet.java
/** * Servlet implementation class LoginServlet */ public class LoginServlet extends HttpServlet { /**
From source file control.AutenticacionServlets.SeleccionarPermisos.java
/** * * @author illustrato */ @WebServlet(name = "SeleccionarPermisos", urlPatterns = { "/SeleccionarPermisos" }) public class SeleccionarPermisos extends HttpServlet {
From source file servlets.module.challenge.UrlAccess3.java
/**
* Failure to Restrict URL Access 3
* <br/><br/>
* This file is part of the Security Shepherd Project.
*
* The Security Shepherd project is free software: you can redistribute it and/or modify
From source file com.soladnet.Controller.CustomerController.java
/** * * @author rasheed */ @WebServlet(name = "CustomerController", urlPatterns = { "/CustomerController" }) public class CustomerController extends HttpServlet {
From source file controller.UploadServlet.java
public class UploadServlet extends HttpServlet { // location to store file uploaded private static final String UPLOAD_DIRECTORY = "upload"; // upload settings private static final int MEMORY_THRESHOLD = 1024 * 1024 * 3; // 3MB private static final int MAX_FILE_SIZE = 1024 * 1024 * 40; // 40MB