Class PhaseExecutionInfo
- java.lang.Object
-
- org.elasticsearch.client.indexlifecycle.PhaseExecutionInfo
-
- All Implemented Interfaces:
ToXContent,ToXContentObject
public class PhaseExecutionInfo extends Object implements ToXContentObject
This class contains information about the current phase being executed by Index Lifecycle Management on the specific 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 PhaseExecutionInfo(String policyName, Phase phase, long version, long modifiedDate)This class holds information about the current phase that is being executed
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)longgetModifiedDate()PhasegetPhase()StringgetPolicyName()longgetVersion()inthashCode()static PhaseExecutionInfoparse(XContentParser parser, String name)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
-
PhaseExecutionInfo
public PhaseExecutionInfo(String policyName, Phase phase, long version, long modifiedDate)
This class holds information about the current phase that is being executed- Parameters:
policyName- the name of the policy being executed, this may not be the current policy assigned to an indexphase- the current phase definition executedversion- the version of thepolicyNamebeing executedmodifiedDate- the time the executing version of the phase was modified
-
-
Method Detail
-
parse
public static PhaseExecutionInfo parse(XContentParser parser, String name)
-
getPolicyName
public String getPolicyName()
-
getPhase
public Phase getPhase()
-
getVersion
public long getVersion()
-
getModifiedDate
public long getModifiedDate()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
-