blob: 15a57678184c0ac12a9e7790050c6ed7b7d69bf7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.equinox.http.servlet.tests.tb1;
import java.io.PrintWriter;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.eclipse.equinox.http.servlet.tests.tb.AbstractTestServlet;
/*
* This servlet is registered with the HttpService via the immediate DS
* component OSGI-INF/testServlet2_component.xml.
*/
public class TestServlet2 extends AbstractTestServlet {
private static final long serialVersionUID = 1L;
private int getEffectiveMajorVersion() {
ServletContext context = getServletContext();
return context.getEffectiveMajorVersion(); // This is a Servlet 3.0 API.
}
@Override
protected void handleDoGet(HttpServletRequest request, PrintWriter writer) {
int version = getEffectiveMajorVersion();
writer.print(version);
}
}