View Javadoc

1   // ========================================================================
2   // Copyright (c) Webtide LLC
3   // ------------------------------------------------------------------------
4   // All rights reserved. This program and the accompanying materials
5   // are made available under the terms of the Eclipse Public License v1.0
6   // and Apache License v2.0 which accompanies this distribution.
7   //
8   // The Eclipse Public License is available at 
9   // http://www.eclipse.org/legal/epl-v10.html
10  //
11  // The Apache License v2.0 is available at
12  // http://www.apache.org/licenses/LICENSE-2.0.txt
13  //
14  // You may elect to redistribute this code under either of these licenses. 
15  // ========================================================================
16  package org.eclipse.jetty.deploy.bindings;
17  
18  import org.eclipse.jetty.deploy.App;
19  import org.eclipse.jetty.deploy.AppLifeCycle;
20  import org.eclipse.jetty.deploy.graph.Node;
21  import org.eclipse.jetty.server.handler.ContextHandler;
22  
23  public class StandardDeployer implements AppLifeCycle.Binding
24  {
25      public String[] getBindingTargets()
26      {
27          return new String[]
28          { "deploying" };
29      }
30  
31      public void processBinding(Node node, App app) throws Exception
32      {
33          ContextHandler handler = app.getContextHandler();
34          if (handler == null)
35          {
36              throw new NullPointerException("No Handler created for App: " + app);
37          }
38          app.getDeploymentManager().getContexts().addHandler(handler);
39      }
40  }