All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.arquillian.spacelift.task.InjectTask Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.arquillian.spacelift.task;

public class InjectTask extends Task {

    private NEXT_IN nextIn;

    public InjectTask passToNext(NEXT_IN next) {
        this.nextIn = next;
        return this;
    }

    @Override
    protected NEXT_IN process(Object input) throws Exception {
        return nextIn;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy