blob: d22608e7e9d37f64cc22db558c94c44b5b724ec9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2014 Cognos Incorporated, 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:
* Cognos Incorporated - initial API and implementation
* IBM Corporation - bug fixes and enhancements
* Raymond Augé <raymond.auge@liferay.com> - Bug 436698
*******************************************************************************/
package org.eclipse.equinox.http.servlet.internal.registration;
import javax.servlet.Servlet;
import org.eclipse.equinox.http.servlet.internal.context.ContextController;
import org.eclipse.equinox.http.servlet.internal.context.ContextController.ServiceHolder;
import org.eclipse.equinox.http.servlet.internal.servlet.Match;
import org.osgi.service.http.context.ServletContextHelper;
import org.osgi.service.http.runtime.dto.ErrorPageDTO;
import org.osgi.service.http.runtime.dto.ServletDTO;
//This class wraps the servlet object registered in the HttpService.registerServlet call, to manage the context classloader when handleRequests are being asked.
public class ServletRegistration extends EndpointRegistration<ServletDTO> {
public ServletRegistration(
ServiceHolder<Servlet> servletHolder, ServletDTO servletDTO, ErrorPageDTO errorPageDTO,
ServletContextHelper servletContextHelper,
ContextController contextController, ClassLoader legacyTCCL) {
super(servletHolder, servletDTO, servletContextHelper, contextController, legacyTCCL);
this.errorPageDTO = errorPageDTO;
}
public ErrorPageDTO getErrorPageDTO() {
return errorPageDTO;
}
@Override
public String getName() {
return getD().name;
}
@Override
public String[] getPatterns() {
return getD().patterns;
}
@Override
public long getServiceId() {
return getD().serviceId;
}
@Override
public String match(
String name, String servletPath, String pathInfo, String extension,
Match match) {
if ((errorPageDTO != null) && (name != null)) {
for (long errorCode : errorPageDTO.errorCodes) {
if (String.valueOf(errorCode).equals(name)) {
return name;
}
}
for (String exception : errorPageDTO.exceptions) {
if (exception.equals(name)) {
return name;
}
}
}
return super.match(name, servletPath, pathInfo, extension, match);
}
private ErrorPageDTO errorPageDTO;
}