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

org.zodiac.script.engine.ScriptContext Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.script.engine;

public class ScriptContext {

    private String id;

    private String md5;

    public ScriptContext(String id, String md5) {
        this.id = id;
        this.md5 = md5;
    }

    public String getMd5() {
        return md5;
    }

    public String getId() {
        return id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy