Skip to content

Reana adapter #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,19 @@
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.16.v20140903</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public Map<String, Variable> getWorkflowInputs(String id) {
}

@Override
public String runWorkflow(String wfId, List<VariableBinding> vBindings, Map<String, Variable> inputVariables) {
public String runWorkflow(String wfId, String workflowName, List<VariableBinding> vBindings, Map<String, Variable> inputVariables) {
// Auto-generated method stub
return null;
}
Expand All @@ -129,8 +129,21 @@ public Map<String, String> getRunVariableBindings(String runId) {
}

@Override
public String getDataUri(String id) {
public String getDataUri(String dataId, String runId) {
// Auto-generated method stub
return null;
}

@Override
public String addData(String url, String workSpaceId, String name, String dType) throws Exception {
// TODO Auto-generated method stub
return null;
}


@Override
public String duplicateWorkflow(String workflowId, String newName) {
// TODO Auto-generated method stub
return null;
}
}
Loading