package org.theonefx.wcframework.mvc.wcweb;
import java.lang.reflect.Method;
import org.theonefx.wcframework.mvc.annotation.BodyType;
public interface Action {
Method getMethod();
String getNamespace();
View[] getViews();
String getName();
String getEncoding();
BodyType getBodyType();
Object execute(ActionInvocationContext context) throws Exception;
}