* @param indexType
* @return
*/
@NotNull
public static String getMapping(String indexName, String indexType) {
final GetMapping build = new GetMapping.Builder().addIndex(indexName).addType(indexType).build();
final JestRichResult jestResult = execute(build);
if (jestResult != null) {
return jestResult.getJsonString();
}
return "";