/******************************************************************************* * Copyright (c) 2013 IBM Corporation 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: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.orion.server.cf.servlets; import org.eclipse.orion.internal.server.servlets.ServletResourceHandler; import org.eclipse.orion.server.servlets.OrionServlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /* * */ public class CFServlet extends OrionServlet { private static final long serialVersionUID = 1L; public static final String CF_URI = "/cf"; //$NON-NLS-1$ public static final String HEADER_CF_VERSION = "CF-Version"; private ServletResourceHandler<String> cFSerializer; public CFServlet() { cFSerializer = new ServletCFHandler(getStatusHandler()); } @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { traceRequest(req); String pathInfo = req.getPathInfo(); if (cFSerializer.handleRequest(req, resp, pathInfo)) return; // finally invoke super to return an error for requests we don't know how to handle super.doGet(req, resp); } @Override protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } @Override protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }