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

com.puresoltechnologies.genesis.transformation.hadoop.AbstractHadoopTransformationStep Maven / Gradle / Ivy

The newest version!
package com.puresoltechnologies.genesis.transformation.hadoop;

import org.apache.hadoop.fs.FileSystem;

import com.puresoltechnologies.genesis.transformation.spi.TransformationStep;

public abstract class AbstractHadoopTransformationStep implements TransformationStep {

    private final HadoopTransformationSequence sequence;

    public AbstractHadoopTransformationStep(HadoopTransformationSequence sequence) {
	super();
	this.sequence = sequence;
    }

    protected FileSystem getFileSystem() {
	return sequence.getFileSystem();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy