blob: c7b6215b123885acce666ec12fc7b5849d0508d4 [file] [log] [blame]
/*
*/
package org.taverna.server.port_description;
import java.net.URI;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
@XmlType(name = "PortDescription")
public abstract class AbstractPortDescription {
@XmlAttribute
public String workflowId;
@XmlAttribute
@XmlSchemaType(name = "anyURI")
public URI workflowRun;
@XmlAttribute
public String workflowRunId;
public void fillInBaseData(String docId, String runId, URI runUrl) {
this.workflowId = docId;
this.workflowRun = runUrl;
this.workflowRunId = runId;
}
}