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

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

package org.embulk.exec;

import com.google.inject.Binder;
import com.google.inject.Module;
import org.embulk.EmbulkSystemProperties;

public class SystemConfigModule implements Module {
    private final EmbulkSystemProperties embulkSystemProperties;

    public SystemConfigModule(final EmbulkSystemProperties embulkSystemProperties) {
        this.embulkSystemProperties = embulkSystemProperties;
    }

    @Override
    public void configure(Binder binder) {
        binder.bind(EmbulkSystemProperties.class)
                .toInstance(embulkSystemProperties);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy