01: package org.directwebremoting.webwork;
02:
03: /**
04: * Interface defining access to a wrapped action result.
05: *
06: * @author <a href='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a>
07: */
08: public interface AjaxDataResult extends AjaxResult {
09: /**
10: * Access the wrapped result. Usually this is an action instance.
11: *
12: * @return wrapped result
13: */
14: Object getData();
15: }
|