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.ClusterStateResponse
is 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 boolean
equals(java.lang.Object o)
static ClusterGetSettingsResponse
fromXContent(XContentParser parser)
Settings
getDefaultSettings()
Returns the default settings for the cluster (only ifinclude_defaults
was set to true in the request)Settings
getPersistentSettings()
Returns the persistent settings for the clusterjava.lang.String
getSetting(java.lang.String setting)
Returns the string value of the setting for the specified index.Settings
getTransientSettings()
Returns the transient settings for the clusterint
hashCode()
java.lang.String
toString()
XContentBuilder
toXContent(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_defaults
was 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:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
fromXContent
public static ClusterGetSettingsResponse fromXContent(XContentParser parser)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-