All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.plugins.server.servlet.ResteasyBootstrapClasses Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.plugins.server.servlet;

/**
 * Constant list of bootstrap classes.  This is used by JBoss AS to determine whether or not it should scan or not
 *
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public interface ResteasyBootstrapClasses
{
   String[] BOOTSTRAP_CLASSES = {
      HttpServletDispatcher.class.getName(),
      ResteasyBootstrap.class.getName(),
      "org.springframework.web.servlet.DispatcherServlet",
      FilterDispatcher.class.getName(),
      "org.jboss.resteasy.plugins.server.servlet.JBossWebDispatcherServlet",
      "org.jboss.resteasy.plugins.server.servlet.HttpServlet30Dispatcher",
      "org.jboss.resteasy.plugins.server.servlet.Filter30Dispatcher",
      "org.jboss.resteasy.plugins.server.servlet.Tomcat6CometDispatcherServlet"
   };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy