Class NodeSaveRequest
- java.lang.Object
-
- com.gentics.contentnode.rest.model.request.NodeSaveRequest
-
public class NodeSaveRequest extends Object
Request for creating a new node.
-
-
Constructor Summary
Constructors Constructor Description NodeSaveRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
The description of the node.Node
getNode()
The REST model of the node to save.void
setDescription(String description)
Set the description of the node.void
setNode(Node node)
Set the REST model of the node to save.
-
-
-
Method Detail
-
getNode
public Node getNode()
The REST model of the node to save.- Returns:
- The REST model of the node to save.
-
setNode
public void setNode(Node node)
Set the REST model of the node to save.- Parameters:
node
- Set the REST model of the node to save.
-
getDescription
public String getDescription()
The description of the node.- Returns:
- The description of the node.
-
setDescription
public void setDescription(String description)
Set the description of the node.- Parameters:
description
- Set the description of the node.
-
-