/*
* Copyright 2005-2006 the original author or authors.
*
* Licensed 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.
*/
package org.strecks.controller.impl;
import java.util.List;
import java.util.Map;
import org.strecks.context.ActionContext;
import org.strecks.controller.ControllerAction;
import org.strecks.injection.internal.InjectionWrapper;
import org.strecks.interceptor.AfterInterceptor;
import org.strecks.interceptor.BeforeInterceptor;
import org.strecks.navigate.NavigationHolder;
import org.strecks.source.ActionBeanSource;
import org.strecks.view.ActionForwardViewAdapter;
import org.strecks.view.ViewAdapter;
/**
* @author Phil Zoio
*/
public class NonStrutsActionControllerAction implements ControllerAction
{
public void setInjectionHandlers(Map<String, InjectionWrapper> injectionHandlers)
{
}
public Object newActionBean(ActionContext actionContext)
{
return null;
}
public void setNavigationHolder(NavigationHolder holder)
{
}
public ViewAdapter executeController(Object actionBean, ActionContext actionContext) throws Exception
{
return new ActionForwardViewAdapter(null);
}
public void setBeanSource(ActionBeanSource clazz)
{
}
public ActionBeanSource getBeanSource()
{
return null;
}
public void preExecute(Object actionBean, ActionContext actionContext) throws Exception
{
}
public List<BeforeInterceptor> getBeforeInterceptors()
{
return null;
}
public List<AfterInterceptor> getAfterInterceptors()
{
return null;
}
public void postExecute(Object actionBean, ActionContext actionContext, Exception e) throws Exception
{
}
}