1 package org.directwebremoting.webwork;2 3 /**4 * Interface defining access to a wrapped action result.5 *6 * @author <a HREF='mailto:the_mindstorm[at]evolva[dot]ro'>Alexandru Popescu</a>7 */8 public interface AjaxDataResult extends AjaxResult9 {10 /**11 * Access the wrapped result. Usually this is an action instance.12 *13 * @return wrapped result14 */15 Object getData();16 }17