View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
4   //  ------------------------------------------------------------------------
5   //  All rights reserved. This program and the accompanying materials
6   //  are made available under the terms of the Eclipse Public License v1.0
7   //  and Apache License v2.0 which accompanies this distribution.
8   //
9   //      The Eclipse Public License is available at
10  //      http://www.eclipse.org/legal/epl-v10.html
11  //
12  //      The Apache License v2.0 is available at
13  //      http://www.opensource.org/licenses/apache2.0.php
14  //
15  //  You may elect to redistribute this code under either of these licenses.
16  //  ========================================================================
17  //
18  
19  package com.acme.osgi;
20  
21  import java.util.Dictionary;
22  import java.util.Hashtable;
23  
24  import javax.servlet.ServletContextEvent;
25  import javax.servlet.ServletContextListener;
26  
27  import org.eclipse.jetty.server.Server;
28  import org.eclipse.jetty.server.handler.ContextHandler;
29  import org.osgi.framework.Bundle;
30  import org.osgi.framework.BundleActivator;
31  import org.osgi.framework.BundleContext;
32  import org.osgi.framework.BundleException;
33  import org.osgi.framework.FrameworkUtil;
34  import org.osgi.framework.ServiceRegistration;
35  import org.osgi.util.tracker.BundleTracker;
36  
37  /**
38   * Bootstrap a ContextHandler
39   * 
40   * 
41   */
42  public class Activator implements BundleActivator
43  {
44  
45      /**
46       * 
47       * @param context
48       */
49      public void start(final BundleContext context) throws Exception
50      {
51          ContextHandler ch = new ContextHandler();
52          ch.addEventListener(new ServletContextListener () 
53          {
54              public void contextInitialized(ServletContextEvent sce)
55              {
56                 System.err.println("Context is initialized");
57              }
58  
59              public void contextDestroyed(ServletContextEvent sce)
60              {
61                  System.err.println("CONTEXT IS DESTROYED!");                
62              }
63          });
64          Dictionary props = new Hashtable();
65          props.put("contextPath","/acme");
66          props.put("Jetty-ContextFilePath", "acme.xml");
67          context.registerService(ContextHandler.class.getName(),ch,props);
68      }
69  
70      /**
71       * Stop the activator.
72       * 
73       * @see
74       * org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
75       */
76      public void stop(BundleContext context) throws Exception
77      {
78      }
79  }