Class ExplainLifecycleResponse
- java.lang.Object
-
- org.elasticsearch.client.indexlifecycle.ExplainLifecycleResponse
-
- All Implemented Interfaces:
ToXContent,ToXContentObject
public class ExplainLifecycleResponse extends java.lang.Object implements ToXContentObject
The response object returned by the Explain Lifecycle API. Since the API can be run over multiple indices the response provides a map of index to the explanation of the lifecycle status for that index.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description ExplainLifecycleResponse(java.util.Map<java.lang.String,IndexLifecycleExplainResponse> indexResponses)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)static ExplainLifecycleResponsefromXContent(XContentParser parser)java.util.Map<java.lang.String,IndexLifecycleExplainResponse>getIndexResponses()inthashCode()java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Constructor Detail
-
ExplainLifecycleResponse
public ExplainLifecycleResponse(java.util.Map<java.lang.String,IndexLifecycleExplainResponse> indexResponses)
-
-
Method Detail
-
fromXContent
public static ExplainLifecycleResponse fromXContent(XContentParser parser)
-
getIndexResponses
public java.util.Map<java.lang.String,IndexLifecycleExplainResponse> getIndexResponses()
- Returns:
- a map of the responses from each requested index. The maps key is
the index name and the value is the
IndexLifecycleExplainResponsedescribing the current lifecycle status of that index
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-