Package org.elasticsearch.client
Class SyncedFlushResponse.ShardFailure
- java.lang.Object
-
- org.elasticsearch.client.SyncedFlushResponse.ShardFailure
-
- All Implemented Interfaces:
ToXContent,ToXContentFragment
- Enclosing class:
- SyncedFlushResponse
public static final class SyncedFlushResponse.ShardFailure extends java.lang.Object implements ToXContentFragment
Description of a failed shard copy for an index.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFAILURE_REASON_FIELDstatic java.lang.StringROUTING_FIELDstatic java.lang.StringSHARD_ID_FIELD-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Method Summary
Modifier and Type Method Description static SyncedFlushResponse.ShardFailurefromXContent(XContentParser parser)java.lang.StringgetFailureReason()java.util.Map<java.lang.String,java.lang.Object>getRouting()intgetShardId()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Method Detail
-
getShardId
public int getShardId()
- Returns:
- Id of the shard whose copy failed
-
getFailureReason
public java.lang.String getFailureReason()
- Returns:
- Reason for failure of the shard copy
-
getRouting
public java.util.Map<java.lang.String,java.lang.Object> getRouting()
- Returns:
- Additional information about the failure.
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public static SyncedFlushResponse.ShardFailure fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-