From 7c32802a739e5930b06a6de1619110ca1df087d6 Mon Sep 17 00:00:00 2001 From: Arnaud Simon Date: Tue, 28 Oct 2008 13:44:56 +0000 Subject: QPID-1401:added missing QManServlet.java git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@708576 13f79535-47bb-0310-9956-ffa450edef68 --- .../qpid/management/servlet/QManServlet.java | 66 ++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 qpid/java/management/client/src/main/java/org/apache/qpid/management/servlet/QManServlet.java (limited to 'qpid/java/management/client/src/main') diff --git a/qpid/java/management/client/src/main/java/org/apache/qpid/management/servlet/QManServlet.java b/qpid/java/management/client/src/main/java/org/apache/qpid/management/servlet/QManServlet.java new file mode 100644 index 0000000000..8c69545f07 --- /dev/null +++ b/qpid/java/management/client/src/main/java/org/apache/qpid/management/servlet/QManServlet.java @@ -0,0 +1,66 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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.apache.qpid.management.servlet; + +import javax.servlet.ServletException; +import javax.servlet.http.HttpServlet; + +import org.apache.qpid.management.domain.services.QMan; +import org.apache.qpid.management.domain.services.StartupFailureException; + +/** + * QMan initializer. + * + * @author Andrea Gazzarini + */ +public class QManServlet extends HttpServlet { + + private static final long serialVersionUID = 6149614872902682208L; + + // QMan instance + private QMan qman; + + /** + * Initializes QMan instance. + * + * @throws ServletException when It's not possibile to proceed with initialization. + */ + @Override + public void init() throws ServletException + { + qman = new QMan(); + try { + qman.start(); + } catch (StartupFailureException exception) + { + throw new ServletException(exception); + } + } + + /** + * Stops QMan instance. + */ + @Override + public void destroy() + { + // qman.stop(); + } +} \ No newline at end of file -- cgit v1.2.1