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

org.cometd.oort.SetiServlet Maven / Gradle / Ivy

There is a newer version: 8.0.6
Show newest version
/*
 * Copyright (c) 2008-2018 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.cometd.oort;

import javax.servlet.ServletConfig;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.UnavailableException;
import javax.servlet.http.HttpServlet;

/**
 * 

This servlet initializes and configures and instance of the {@link Seti} * user mapper.

*

This servlet must be initialized after an instance the Oort servlet * that creates the {@link Oort} instance.

*

Override method {@link #newSeti(Oort)} to return a customized * instance of {@link Seti}.

* * @see OortMulticastConfigServlet */ public class SetiServlet extends HttpServlet { @Override public void init(ServletConfig config) throws ServletException { super.init(config); ServletContext servletContext = config.getServletContext(); Oort oort = (Oort)servletContext.getAttribute(Oort.OORT_ATTRIBUTE); if (oort == null) { throw new UnavailableException("Missing " + Oort.OORT_ATTRIBUTE + " attribute"); } try { Seti seti = newSeti(oort); seti.start(); servletContext.setAttribute(Seti.SETI_ATTRIBUTE, seti); } catch (Exception x) { throw new ServletException(x); } } protected Seti newSeti(Oort oort) { return new Seti(oort); } @Override public void destroy() { try { ServletContext servletContext = getServletConfig().getServletContext(); Seti seti = (Seti)servletContext.getAttribute(Seti.SETI_ATTRIBUTE); servletContext.removeAttribute(Seti.SETI_ATTRIBUTE); if (seti != null) { seti.stop(); } } catch (Exception x) { throw new RuntimeException(x); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy