/*
* Copyright (c) 2002-2006 by OpenSymphony
* All rights reserved.
*/
package com.opensymphony.xwork2.mock;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.ActionProxy;
import com.opensymphony.xwork2.config.Configuration;
import com.opensymphony.xwork2.config.entities.ActionConfig;
/**
* Mock for an {@link ActionProxy}.
*
* @author Patrick Lightbody (plightbo at gmail dot com)
*/
public class MockActionProxy implements ActionProxy {
Object action;
String actionName;
ActionConfig config;
boolean executeResult;
ActionInvocation invocation;
String namespace;
String method;
boolean executedCalled;
String returnedResult;
Configuration configuration;
public void prepare() throws Exception {}
public String execute() throws Exception {
executedCalled = true;
return returnedResult;
}
public void setReturnedResult(String returnedResult) {
this.returnedResult = returnedResult;
}
public boolean isExecutedCalled() {
return executedCalled;
}
public Object getAction() {
return action;
}
public void setAction(Object action) {
this.action = action;
}
public String getActionName() {
return actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public ActionConfig getConfig() {
return config;
}
public void setConfig(ActionConfig config) {
this.config = config;
}
public boolean getExecuteResult() {
return executeResult;
}
public void setExecuteResult(boolean executeResult) {
this.executeResult = executeResult;
}
public ActionInvocation getInvocation() {
return invocation;
}
public void setInvocation(ActionInvocation invocation) {
this.invocation = invocation;
}
public String getNamespace() {
return namespace;
}
public void setNamespace(String namespace) {
this.namespace = namespace;
}
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
}
|