Package com.flowable.indexing.job.impl
Class DefaultBulkResponseItem
- java.lang.Object
-
- com.flowable.indexing.job.impl.DefaultBulkResponseItem
-
- All Implemented Interfaces:
ElasticsearchBulkResponseItem
public class DefaultBulkResponseItem extends Object implements ElasticsearchBulkResponseItem
- Author:
- Filip Hrisafov
-
-
Field Summary
Fields Modifier and Type Field Description protected String
action
protected com.fasterxml.jackson.databind.JsonNode
actionValue
-
Constructor Summary
Constructors Constructor Description DefaultBulkResponseItem(String action, com.fasterxml.jackson.databind.JsonNode actionValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode
getFailure()
String
getFailureMessage()
boolean
isFailed()
-
-
-
Field Detail
-
action
protected final String action
-
actionValue
protected final com.fasterxml.jackson.databind.JsonNode actionValue
-
-
Constructor Detail
-
DefaultBulkResponseItem
public DefaultBulkResponseItem(String action, com.fasterxml.jackson.databind.JsonNode actionValue)
-
-
Method Detail
-
isFailed
public boolean isFailed()
- Specified by:
isFailed
in interfaceElasticsearchBulkResponseItem
-
getFailureMessage
public String getFailureMessage()
- Specified by:
getFailureMessage
in interfaceElasticsearchBulkResponseItem
-
getFailure
public com.fasterxml.jackson.databind.JsonNode getFailure()
- Specified by:
getFailure
in interfaceElasticsearchBulkResponseItem
-
-