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

com.aol.micro.server.rest.jersey.CustomJerseyServlet Maven / Gradle / Ivy

The newest version!
package com.aol.micro.server.rest.jersey;
import javax.servlet.ServletException;

import org.glassfish.jersey.servlet.ServletContainer;


import com.aol.micro.server.servers.ServerThreadLocalVariables;

public class CustomJerseyServlet extends ServletContainer{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private final String context;
	public CustomJerseyServlet(String context){
		this.context =context;
	}
	 @Override
	   public void init() throws ServletException {
		 ServerThreadLocalVariables.getContext().set(context);
		 super.init();
	        
	   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy