blob: 4903ea98342f3887305160e4cc3e3a8d1cd4551c [file] [log] [blame]
package org.taverna.server.master.api;
import org.taverna.server.master.ContentsDescriptorBuilder;
import org.taverna.server.master.interfaces.TavernaRun;
/**
* Description of properties supported by {@link RunREST}.
*
* @author Donal Fellows
*/
public interface RunBean extends SupportAware {
void setCdBuilder(ContentsDescriptorBuilder cdBuilder);
void setRun(TavernaRun run);
void setRunName(String runName);
}