com.datastax.data.exploration.service.PersistentDataService Maven / Gradle / Ivy
The newest version!
package com.datastax.data.exploration.service;
import com.alibaba.fastjson.JSONObject;
/**
* @author songfu 2017/12/01
*/
public interface PersistentDataService {
void setDataType(String idUrl, JSONObject jsonObject);
JSONObject typeShow(String id);
void filterErrorData(String id);
}