package org.fulworx.core.descriptor.action;
import com.opensymphony.xwork2.Action;
/**
* The delete action is used to delete a resource. A 'CREATE' is invoked by an http 'PUT' invocation or a 'POST'
* with a query attribute "method=delete".
*/
publicinterface DeleteAction extends Action
{
String delete() throws
Exception;
}