use of com.google.refine.operations.recon.ReconMatchSpecificTopicOperation in project OpenRefine by OpenRefine.
the class ReconMatchSpecificTopicCommand method createOperation.
@Override
protected AbstractOperation createOperation(Project project, HttpServletRequest request, JSONObject engineConfig) throws Exception {
String columnName = request.getParameter("columnName");
ReconCandidate match = new ReconCandidate(request.getParameter("topicID"), request.getParameter("topicName"), request.getParameter("types").split(","), 100);
return new ReconMatchSpecificTopicOperation(engineConfig, columnName, match, request.getParameter("identifierSpace"), request.getParameter("schemaSpace"));
}
Aggregations