Sha256: cda27e0980ab69548b626cd6e96da4df12c2e3afafbaf847a840d5aff825ed2b

Contents?: true

Size: 1.77 KB

Versions: 2

Compression:

Stored size: 1.77 KB

Contents

package org.embulk.tester;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import org.embulk.config.ConfigSource;
import org.embulk.config.DataSource;

import java.util.List;
import java.util.Map;

public class DummyConfigSource implements ConfigSource {
    @Override
    public <T> T loadConfig(Class<T> taskType) {
        return null;
    }

    @Override
    public List<String> getAttributeNames() {
        return null;
    }

    @Override
    public Iterable<Map.Entry<String, JsonNode>> getAttributes() {
        return null;
    }

    @Override
    public boolean isEmpty() {
        return false;
    }

    @Override
    public boolean has(String attrName) {
        return false;
    }

    @Override
    public <E> E get(Class<E> type, String attrName) {
        return null;
    }

    @Override
    public <E> E get(Class<E> type, String attrName, E defaultValue) {
        return null;
    }

    @Override
    public ConfigSource getNested(String attrName) {
        return null;
    }

    @Override
    public ConfigSource getNestedOrSetEmpty(String attrName) {
        return null;
    }

    @Override
    public ConfigSource set(String attrName, Object v) {
        return null;
    }

    @Override
    public ConfigSource setNested(String attrName, DataSource v) {
        return null;
    }

    @Override
    public ConfigSource setAll(DataSource other) {
        return null;
    }

    @Override
    public ConfigSource remove(String attrName) {
        return null;
    }

    @Override
    public ConfigSource deepCopy() {
        return null;
    }

    @Override
    public ConfigSource merge(DataSource other) {
        return null;
    }

    @Override
    public ObjectNode getObjectNode() {
        return null;
    }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
embulk-parser-apache-custom-log-0.4.1 src/test/java/org/embulk/tester/DummyConfigSource.java
embulk-parser-apache-custom-log-0.4.0 src/test/java/org/embulk/tester/DummyConfigSource.java