01: package org.apache.turbine.services.assemblerbroker;
02:
03: /*
04: * Licensed to the Apache Software Foundation (ASF) under one
05: * or more contributor license agreements. See the NOTICE file
06: * distributed with this work for additional information
07: * regarding copyright ownership. The ASF licenses this file
08: * to you under the Apache License, Version 2.0 (the
09: * "License"); you may not use this file except in compliance
10: * with the License. You may obtain a copy of the License at
11: *
12: * http://www.apache.org/licenses/LICENSE-2.0
13: *
14: * Unless required by applicable law or agreed to in writing,
15: * software distributed under the License is distributed on an
16: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17: * KIND, either express or implied. See the License for the
18: * specific language governing permissions and limitations
19: * under the License.
20: */
21:
22: import org.apache.turbine.modules.Assembler;
23: import org.apache.turbine.services.TurbineServices;
24: import org.apache.turbine.services.assemblerbroker.util.AssemblerFactory;
25: import org.apache.turbine.util.TurbineException;
26:
27: /**
28: * An interface the Turbine Assembler service.
29: * See TurbineAssemblerBrokerService for more info.
30: *
31: * @author <a href="mailto:leon@opticode.co.za">Leon Messerschmidt</a>
32: * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
33: * @version $Id: TurbineAssemblerBroker.java 534527 2007-05-02 16:10:59Z tv $
34: */
35: public abstract class TurbineAssemblerBroker {
36: /**
37: * Utility method for accessing the service
38: * implementation
39: *
40: * @return An AssemblerBroker implementation instance
41: */
42: public static AssemblerBrokerService getService() {
43: return (AssemblerBrokerService) TurbineServices.getInstance()
44: .getService(AssemblerBrokerService.SERVICE_NAME);
45: }
46:
47: /**
48: * Register a new Assembler factory with this service.
49: *
50: * @param type The type of Assembler Factory
51: * @param factory The actual Factory Object
52: */
53: public static void registerFactory(String type,
54: AssemblerFactory factory) {
55: getService().registerFactory(type, factory);
56: }
57:
58: /**
59: * Return an Assembler for a given type and object name.
60: *
61: * @param type The Type of Assember we want
62: * @param name The name of the Assembler
63: *
64: * @return An Assembler Object.
65: *
66: * @throws TurbineException If a problem locating the Assember occured.
67: */
68: public static Assembler getAssembler(String type, String name)
69: throws TurbineException {
70: return getService().getAssembler(type, name);
71: }
72: }
|