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              @Override
55              public void contextInitialized(ServletContextEvent sce)
56              {
57                 // System.err.println("Context is initialized");
58              }
59  
60              @Override
61              public void contextDestroyed(ServletContextEvent sce)
62              {
63                  // System.err.println("CONTEXT IS DESTROYED!");                
64              }
65              
66          });
67          Dictionary props = new Hashtable();
68          props.put("contextPath","/acme");
69          props.put("Jetty-ContextFilePath", "acme.xml");
70          context.registerService(ContextHandler.class.getName(),ch,props);
71      }
72  
73      /**
74       * Stop the activator.
75       * 
76       * @see
77       * org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
78       */
79      public void stop(BundleContext context) throws Exception
80      {
81      }
82  }