com.nflabs.zeppelin.zengine.ZWebContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zeppelin-zengine Show documentation
Show all versions of zeppelin-zengine Show documentation
Zengine is java framework for data analysis on Hadoop. see http://nflabs.github.io/zeppelin/#/zengine
package com.nflabs.zeppelin.zengine;
import com.nflabs.zeppelin.result.Result;
/**
* Zeppelin Web Context. Passed to Zeppelin UDF's web template.
* ZWebContext have result data of execution.
* Normally result in ZWebContext is used to visualize data in web template file.
* @author moon
*
*/
public class ZWebContext {
private Result result;
/**
*
* @param resultDataObject result data after execution
*/
public ZWebContext(Result resultDataObject) {
this.result = resultDataObject;
}
/**
* Get result data
* @return result
*/
public Result result(){
return result;
}
}