/******************************************************************************* * Copyright (c) 2014 Raymond Augé and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Raymond Augé <raymond.auge@liferay.com> - Bug 436698 ******************************************************************************/ package org.eclipse.equinox.http.servlet.tests.wb.t2; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import org.eclipse.equinox.http.servlet.tests.tb.AbstractWhiteboardTestServlet; /** * @author Raymond Augé */ public class WBServlet2 extends AbstractWhiteboardTestServlet { private static final long serialVersionUID = 1L; @Override protected void handleDoGet(HttpServletRequest request, PrintWriter writer) throws ServletException, IOException { writer.print('a'); } }