本文整理了Java中uk.org.taverna.scufl2.api.core.Workflow.getIdentifier()
方法的一些代码示例,展示了Workflow.getIdentifier()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Workflow.getIdentifier()
方法的具体详情如下:
包路径:uk.org.taverna.scufl2.api.core.Workflow
类名称:Workflow
方法名:getIdentifier
暂无
代码示例来源:origin: uk.org.taverna.scufl2/scufl2-api
if (wf.getIdentifier().equals(uri)) {
return wf;
代码示例来源:origin: uk.org.taverna.scufl2/scufl2-api
@Test
public void workflowIdentifier() {
Workflow wf = wfBundle.getMainWorkflow();
String uuidPath = uriTools.relativePath(Workflow.WORKFLOW_ROOT,
wf.getIdentifier()).getPath();
assertTrue(uuidPath.endsWith("/"));
// Should be a valid uuid
UUID.fromString(uuidPath.substring(0, uuidPath.length() - 1));
}
代码示例来源:origin: uk.org.taverna.scufl2/scufl2-validation-correctness
URI workflowIdentifier = bean.getIdentifier();
代码示例来源:origin: uk.org.taverna.scufl2/scufl2-rdfxml
workflow.setName(wf.getName());
if (wf.getIdentifier() != null) {
Resource wfId = rdfObjectFactory.createResource();
wfId.setResource(wf.getIdentifier().toASCIIString());
workflow.setWorkflowIdentifier(wfId);
内容来源于网络,如有侵权,请联系作者删除!