Class ClusterGetSettingsResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.action.ActionResponse
-
- org.elasticsearch.action.admin.cluster.settings.ClusterGetSettingsResponse
-
- All Implemented Interfaces:
Streamable,Writeable,ToXContent,ToXContentObject
public class ClusterGetSettingsResponse extends ActionResponse implements ToXContentObject
This response is specific to the REST client.ClusterStateResponseis used on the transport layer.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested 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
-
-
Constructor Summary
Constructors Constructor Description ClusterGetSettingsResponse(Settings persistentSettings, Settings transientSettings, Settings defaultSettings)
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)static ClusterGetSettingsResponsefromXContent(XContentParser parser)SettingsgetDefaultSettings()Returns the default settings for the cluster (only ifinclude_defaultswas set to true in the request)SettingsgetPersistentSettings()Returns the persistent settings for the clusterjava.lang.StringgetSetting(java.lang.String setting)Returns the string value of the setting for the specified index.SettingsgetTransientSettings()Returns the transient settings for the clusterinthashCode()java.lang.StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class org.elasticsearch.action.ActionResponse
readFrom, writeTo
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
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
-
-
-
-
Method Detail
-
getPersistentSettings
public Settings getPersistentSettings()
Returns the persistent settings for the cluster- Returns:
- Settings
-
getTransientSettings
public Settings getTransientSettings()
Returns the transient settings for the cluster- Returns:
- Settings
-
getDefaultSettings
public Settings getDefaultSettings()
Returns the default settings for the cluster (only ifinclude_defaultswas set to true in the request)- Returns:
- Settings
-
getSetting
public java.lang.String getSetting(java.lang.String setting)
Returns the string value of the setting for the specified index. The order of search is first in persistent settings the transient settings and finally the default settings.- Parameters:
setting- the name of the setting to get- Returns:
- String
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
fromXContent
public static ClusterGetSettingsResponse fromXContent(XContentParser parser)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-