Skip to content

Commit

Permalink
Add framework annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
dr0i committed Nov 25, 2021
1 parent 6e92d63 commit 836ba80
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
import org.metafacture.framework.FluxCommand;
import org.metafacture.framework.MetafactureException;
import org.metafacture.framework.ObjectReceiver;
import org.metafacture.framework.annotations.Description;
import org.metafacture.framework.annotations.In;
import org.metafacture.framework.annotations.Out;
import org.metafacture.framework.helpers.DefaultObjectPipe;
import org.metafacture.framework.objects.Triple;

Expand All @@ -34,6 +37,9 @@
* @author Christoph Böhme
*
*/
@Description("Reads triples")
@In(String.class)
@Out(Triple.class)
@FluxCommand("read-triples")
public final class TripleReader extends DefaultObjectPipe<String, ObjectReceiver<Triple>> {

Expand Down

0 comments on commit 836ba80

Please sign in to comment.