Class NodeSettingsResponse
- java.lang.Object
-
- com.gentics.contentnode.rest.model.response.GenericResponse
-
- com.gentics.contentnode.rest.model.response.NodeSettingsResponse
-
- All Implemented Interfaces:
Serializable
public class NodeSettingsResponse extends GenericResponse
Response to a request for loading node specific settings.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NodeSettingsResponse()
Create an empty instance.NodeSettingsResponse(com.fasterxml.jackson.databind.JsonNode data, ResponseInfo responseInfo)
Create an instance with the given settings and response information, but without message.NodeSettingsResponse(Message message, ResponseInfo responseInfo)
Create an instance with empty settings and given message and response information.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.fasterxml.jackson.databind.JsonNode
getData()
Get the loaded node settings.void
setData(com.fasterxml.jackson.databind.JsonNode data)
Set the loaded node settings.-
Methods inherited from class com.gentics.contentnode.rest.model.response.GenericResponse
addMessage, getMessages, getResponseInfo, setMessages, setResponseInfo
-
-
-
-
Constructor Detail
-
NodeSettingsResponse
public NodeSettingsResponse()
Create an empty instance.
-
NodeSettingsResponse
public NodeSettingsResponse(Message message, ResponseInfo responseInfo)
Create an instance with empty settings and given message and response information.- Parameters:
responseInfo
- The response information
-
NodeSettingsResponse
public NodeSettingsResponse(com.fasterxml.jackson.databind.JsonNode data, ResponseInfo responseInfo)
Create an instance with the given settings and response information, but without message.- Parameters:
data
- The node settingsresponseInfo
- The response information
-
-