Skip to content

Commit

Permalink
Stubs for workflow system in CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Ferdinando Villa committed Nov 12, 2023
1 parent dcaf23f commit 0b8edba
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions klab.services.community/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@
</parent>
<artifactId>klab.services.community</artifactId>
<dependencies>

<!-- https://mvnrepository.com/artifact/org.copper-engine/copper-coreengine -->
<dependency>
<groupId>org.copper-engine</groupId>
<artifactId>copper-coreengine</artifactId>
<version>5.4.2</version>
</dependency>

<dependency>
<groupId>org.integratedmodelling</groupId>
<artifactId>klab.services.core</artifactId>
<version>${klab.version}</version>
</dependency>


</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package org.integratedmodelling.klab.services.community.workflows;

import org.copperengine.core.Interrupt;
import org.copperengine.core.persistent.PersistentWorkflow;
import org.copperengine.core.WorkflowDescription;

@WorkflowDescription(alias = "ResourceSubmission", majorVersion = 1, minorVersion = 0, patchLevelVersion = 0l)
public class ResourceSubmission extends PersistentWorkflow<ResourceSubmissionState> {

@Override
public void main() throws Interrupt {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.integratedmodelling.klab.services.community.workflows;

import java.io.Serializable;

public class ResourceSubmissionState implements Serializable {
}

0 comments on commit 0b8edba

Please sign in to comment.