blob: 5099b30cc70621385771a3e5e7f89c5f9616685e [file] [log] [blame]
package org.apache.turbine.services.assemblerbroker.util.python;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import org.apache.turbine.modules.Action;
import org.apache.turbine.modules.ActionLoader;
import org.apache.turbine.modules.Loader;
/**
* A screen factory that attempts to load a python class in the
* JPython interpreter and execute it as a Turbine screen.
* The JPython script should inherit from Turbine Screen or one
* of its subclasses.
*
* @author <a href="mailto:leon@opticode.co.za">Leon Messerschmidt</a>
* @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
* @version $Id$
*/
public class PythonActionFactory
extends PythonBaseFactory<Action>
{
/**
* Get an Assembler.
*
* @param name name of the requested Assembler
* @return an Assembler
* @throws Exception generic exception
*/
@Override
public Action getAssembler(String name)
throws Exception
{
return getAssembler(Action.PREFIX, name);
}
/**
* Get the loader for this type of assembler
*
* @return a Loader
*/
@Override
public Loader<Action> getLoader()
{
return ActionLoader.getInstance();
}
/**
* Get the class of this assembler
*
* @return a class
*/
@Override
public Class<Action> getManagedClass()
{
return Action.class;
}
}