View Javadoc

1   //
2   //  ========================================================================
3   //  Copyright (c) 1995-2015 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.handler.ContextHandler;
28  import org.osgi.framework.BundleActivator;
29  import org.osgi.framework.BundleContext;
30  
31  /**
32   * Bootstrap a ContextHandler
33   * 
34   * 
35   */
36  public class Activator implements BundleActivator
37  {
38  
39      /**
40       * 
41       * @param context
42       */
43      public void start(final BundleContext context) throws Exception
44      {
45          ContextHandler ch = new ContextHandler();
46          ch.addEventListener(new ServletContextListener () {
47  
48              @Override
49              public void contextInitialized(ServletContextEvent sce)
50              {
51                 // System.err.println("Context is initialized");
52              }
53  
54              @Override
55              public void contextDestroyed(ServletContextEvent sce)
56              {
57                  // System.err.println("CONTEXT IS DESTROYED!");                
58              }
59              
60          });
61          Dictionary props = new Hashtable();
62          props.put("contextPath","/acme");
63          props.put("Jetty-ContextFilePath", "acme.xml");
64          context.registerService(ContextHandler.class.getName(),ch,props);
65      }
66  
67      /**
68       * Stop the activator.
69       * 
70       * @see
71       * org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
72       */
73      public void stop(BundleContext context) throws Exception
74      {
75      }
76  }