Class ResetFeatureStateResponse.ResetFeatureStateStatus
java.lang.Object
org.elasticsearch.action.admin.cluster.snapshots.features.ResetFeatureStateResponse.ResetFeatureStateStatus
- All Implemented Interfaces:
Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentObject
- Enclosing class:
- ResetFeatureStateResponse
public static class ResetFeatureStateResponse.ResetFeatureStateStatus
extends Object
implements Writeable, org.elasticsearch.common.xcontent.ToXContentObject
An object with the name of a feature and a message indicating success or
failure.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classSuccess or failure enum.Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Method Summary
Modifier and TypeMethodDescriptionbooleanWithout a convenient way to compare Exception equality, we consider only feature name and success or failure for equality.Create a feature status for a failed reset operationinthashCode()Create a feature status for a successful reset operationtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Method Details
-
success
Create a feature status for a successful reset operation- Parameters:
featureName- Name of the feature whose state was successfully reset- Returns:
- Success status for a feature
-
failure
public static ResetFeatureStateResponse.ResetFeatureStateStatus failure(String featureName, Exception exception)Create a feature status for a failed reset operation- Parameters:
featureName- Name of the feature that failedexception- The exception that caused or described the failure- Returns:
- Failure status for a feature
-
getFeatureName
- Returns:
- Name of the feature we tried to reset
-
getStatus
- Returns:
- Success or failure for the reset operation
-
getException
- Returns:
- For a failed reset operation, the exception that caused or describes the failure.
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
IOException
-
equals
Without a convenient way to compare Exception equality, we consider only feature name and success or failure for equality. -
hashCode
public int hashCode() -
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
toString
-