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

org.embulk.exec.PreviewResult Maven / Gradle / Ivy

package org.embulk.exec;

import java.util.List;
import org.embulk.spi.Page;
import org.embulk.spi.Schema;

public class PreviewResult {
    private final Schema schema;
    private final List pages;

    public PreviewResult(Schema schema, List pages) {
        this.schema = schema;
        this.pages = pages;
    }

    public Schema getSchema() {
        return schema;
    }

    public List getPages() {
        return pages;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy