* @param indexType
* @param indexMapping
*/
public static JestRichResult createMapping(String indexName, String indexType, String indexMapping) {
Logger.debug("ElasticSearch : creating mapping [" + indexName + "/" + indexType + "] : " + indexMapping);
final PutMapping build = new PutMapping.Builder(indexName, indexType, indexMapping).build();
return execute(build);
}