Package com.etsy.oculus.tsscorers

Source Code of com.etsy.oculus.tsscorers.EuclidianScriptFactory

package com.etsy.oculus.tsscorers;

import org.elasticsearch.common.Nullable;
import org.elasticsearch.script.ExecutableScript;
import org.elasticsearch.script.NativeScriptFactory;
import com.etsy.oculus.tsscorers.EuclidianScript;

import java.util.Map;

public class EuclidianScriptFactory implements NativeScriptFactory {

  @Override public ExecutableScript newScript (@Nullable Map<String,Object> params){
    return new EuclidianScript(params);
  }
}
TOP

Related Classes of com.etsy.oculus.tsscorers.EuclidianScriptFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.