View Javadoc

1   package org.apache.turbine.services.assemblerbroker.util.java;
2   
3   
4   /*
5    * Licensed to the Apache Software Foundation (ASF) under one
6    * or more contributor license agreements.  See the NOTICE file
7    * distributed with this work for additional information
8    * regarding copyright ownership.  The ASF licenses this file
9    * to you under the Apache License, Version 2.0 (the
10   * "License"); you may not use this file except in compliance
11   * with the License.  You may obtain a copy of the License at
12   *
13   *   http://www.apache.org/licenses/LICENSE-2.0
14   *
15   * Unless required by applicable law or agreed to in writing,
16   * software distributed under the License is distributed on an
17   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18   * KIND, either express or implied.  See the License for the
19   * specific language governing permissions and limitations
20   * under the License.
21   */
22  
23  
24  import org.apache.turbine.modules.Action;
25  import org.apache.turbine.modules.ActionLoader;
26  import org.apache.turbine.modules.Assembler;
27  import org.apache.turbine.modules.Loader;
28  
29  /**
30   * An action factory that attempts to load a java class from
31   * the module packages defined in the TurbineResource.properties.
32   *
33   * @author <a href="mailto:leon@opticode.co.za">Leon Messerschmidt</a>
34   * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
35   * @version $Id: JavaActionFactory.java 743072 2009-02-10 19:40:09Z tv $
36   */
37  public class JavaActionFactory
38      extends JavaBaseFactory
39  {
40      /**
41       * Get an Assembler.
42       *
43       * @param name name of the requested Assembler
44       * @return an Assembler
45       */
46      public Assembler getAssembler(String name)
47      {
48          return getAssembler(Action.PREFIX, name);
49      }
50  
51      /**
52       * Get the loader for this type of assembler
53       * 
54       * @return a Loader
55       */
56      public Loader getLoader()
57      {
58          return ActionLoader.getInstance();
59      }
60  }