Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6b41e4d3d6ca5af2fd409d59535fa3ad1ab07932 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*******************************************************************************
 * Copyright (c) 1999, 2006 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.equinox.http;

import javax.servlet.Servlet;
import javax.servlet.ServletException;
import org.osgi.framework.Bundle;
import org.osgi.service.http.HttpContext;
import org.osgi.service.http.NamespaceException;

public class HttpService implements org.osgi.service.http.HttpService {
	private HttpListener listener;
	private Bundle bundle;

	HttpService(HttpListener listener, Bundle bundle) {
		this.listener = listener;
		this.bundle = bundle;
	}

	void destroy() {
		listener.destroyBundle(bundle);
		listener = null;
		bundle = null;
	}

	public void registerResources(String alias, String name, HttpContext httpContext) throws NamespaceException {
		HttpListener tempListener = this.listener;

		if (tempListener != null) {
			if (httpContext == null) {
				httpContext = createDefaultHttpContext();
			}

			tempListener.registerResources(bundle, alias, name, httpContext);
		}
	}

	public void registerServlet(String alias, Servlet servlet, java.util.Dictionary initparams, HttpContext httpContext) throws ServletException, NamespaceException, IllegalArgumentException {
		HttpListener tempListener = this.listener;

		if (tempListener != null) {
			if (httpContext == null) {
				httpContext = createDefaultHttpContext();
			}

			tempListener.registerServlet(bundle, alias, servlet, initparams, httpContext);
		}
	}

	public void unregister(String alias) throws IllegalArgumentException {
		HttpListener tempListener = this.listener;

		if (tempListener != null) {
			tempListener.unregister(bundle, alias);
		}
	}

	public HttpContext createDefaultHttpContext() {
		HttpListener tempListener = this.listener;

		if (tempListener != null) {
			return (tempListener.createDefaultHttpContext(bundle));
		}

		return (null);
	}
}

Back to the top