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

group.rober.base.detector.DetectorContextInitor Maven / Gradle / Ivy

The newest version!
package group.rober.base.detector;

import group.rober.runtime.lang.MapData;

/**
 * 检查器上下文容器初始化执行器
 */
public abstract class DetectorContextInitor {
    public abstract void init(DetectorContext context);

    public final void  init0(DetectorContext context,MapData params){
        context.setParam(params);
    }

    protected DetectorContextInitor setContextParam(DetectorContext context,String xpath, Object object) {
        context.setParam(xpath,object);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy