blob: 593b41035949382db0b9a01a93c1b36ad37e57a8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Raymond Augé 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:
* Raymond Augé <raymond.auge@liferay.com> - Bug 436698
******************************************************************************/
package org.eclipse.equinox.http.servlet.tests.tb1;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import org.eclipse.equinox.http.servlet.tests.tb.AbstractTestServlet;
/**
* @author Raymond Augé
*/
public class TestServlet7 extends AbstractTestServlet {
private static final long serialVersionUID = 1L;
@Override
protected String getAlias() {
return regexAlias();
}
@Override
protected void handleDoGet(HttpServletRequest request, PrintWriter writer) {
writer.print('a');
}
}