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

com.redhat.lightblue.assoc.ep.StepResultWrapper Maven / Gradle / Ivy

There is a newer version: 2.18.0
Show newest version
package com.redhat.lightblue.assoc.ep;

import java.util.stream.Stream;

/**
 * Wraps a step result. Convenience class for other result implementations
 */
public class StepResultWrapper implements StepResult {

    protected final StepResult wrapped;

    public StepResultWrapper(StepResult wrapped) {
        this.wrapped = wrapped;
    }

    @Override
    public Stream stream() {
        return wrapped.stream();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy