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

com.github.houbb.value.extraction.api.ValueExtractionContext Maven / Gradle / Ivy

package com.github.houbb.value.extraction.api;

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

/**
 * @since 0.1.0
 */
public class ValueExtractionContext {

    private Map dataMap;

    /**
     * 处理脚本
     */
    private List scripts;

    public Map getDataMap() {
        return dataMap;
    }

    public void setDataMap(Map dataMap) {
        this.dataMap = dataMap;
    }

    public List getScripts() {
        return scripts;
    }

    public void setScripts(List scripts) {
        this.scripts = scripts;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy