Skip to content

Commit

Permalink
Merge pull request #370 from metafacture/add-signature-and-description
Browse files Browse the repository at this point in the history
Update Metafix.java
  • Loading branch information
TobiasNx authored Oct 14, 2024
2 parents 81a88bc + ec7f9ec commit 4453635
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions metafix/src/main/java/org/metafacture/metafix/Metafix.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@

package org.metafacture.metafix;

import org.metafacture.framework.FluxCommand;
import org.metafacture.framework.MetafactureException;
import org.metafacture.framework.StandardEventNames;
import org.metafacture.framework.StreamPipe;
import org.metafacture.framework.StreamReceiver;
import org.metafacture.framework.annotations.Description;
import org.metafacture.framework.annotations.In;
import org.metafacture.framework.annotations.Out;
import org.metafacture.framework.helpers.DefaultStreamReceiver;
import org.metafacture.mangling.StreamFlattener;
import org.metafacture.metafix.fix.Expression;
Expand Down Expand Up @@ -57,6 +61,10 @@
* @author Christoph Böhme (Metamorph)
* @author Fabian Steeg (Metafix)
*/
@Description("Applies a fix transformation to the event stream, given as the path to a fix file or the fixes themselves.") // checkstyle-disable-line ClassDataAbstractionCoupling|ClassFanOutComplexity
@In(StreamReceiver.class)
@Out(StreamReceiver.class)
@FluxCommand("fix")
public class Metafix implements StreamPipe<StreamReceiver>, Maps { // checkstyle-disable-line ClassDataAbstractionCoupling
public static final String ARRAY_MARKER = "[]";
public static final String FIX_EXTENSION = ".fix";
Expand Down

0 comments on commit 4453635

Please sign in to comment.