Class PhaseExecutionInfo
java.lang.Object
org.elasticsearch.client.indexlifecycle.PhaseExecutionInfo
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
public class PhaseExecutionInfo
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
This class contains information about the current phase being executed by Index
Lifecycle Management on the specific index.
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
Constructors Constructor Description PhaseExecutionInfo(java.lang.String policyName, Phase phase, long version, long modifiedDate)This class holds information about the current phase that is being executed -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object obj)longgetModifiedDate()PhasegetPhase()java.lang.StringgetPolicyName()longgetVersion()inthashCode()static PhaseExecutionInfoparse(org.elasticsearch.common.xcontent.XContentParser parser, java.lang.String name)java.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
-
Constructor Details
-
PhaseExecutionInfo
public PhaseExecutionInfo(java.lang.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 Details
-
parse
public static PhaseExecutionInfo parse(org.elasticsearch.common.xcontent.XContentParser parser, java.lang.String name) -
getPolicyName
public java.lang.String getPolicyName() -
getPhase
-
getVersion
public long getVersion() -
getModifiedDate
public long getModifiedDate() -
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
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-