
restql.core.interop.Hook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restql-core Show documentation
Show all versions of restql-core Show documentation
Microservice query language for Java
The newest version!
package restql.core.interop;
import java.util.Map;
/**
* Created by iago.osilva on 30/01/17.
*/
public abstract class Hook {
private Map data;
public void setData(Map data) {
this.data = data;
}
public Map getData() {
return this.data;
}
public abstract void execute();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy