001 package grails.plugins.gwt.shared;
002
003 import java.io.Serializable;
004
005 /**
006 * Represents the response to a particular action. Each implementation
007 * of {@link Action} should have its own corresponding Response. For
008 * example, a search action would have a response that contained the
009 * (serializable) search results.
010 */
011 public interface Response extends Serializable {
012 }