]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/execution/ExecutionModule.java
9be149475cc1776d73801838e0388bef3edbee32
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / execution / ExecutionModule.java
1 package org.argeo.slc.execution;
2
3 import org.argeo.slc.process.SlcExecution;
4
5 public interface ExecutionModule {
6 public String getName();
7
8 public String getVersion();
9
10 public ExecutionModuleDescriptor getDescriptor();
11
12 public void execute(SlcExecution slcExecution);
13 }