Class NodeAPI
java.lang.Object
ntnu.idatt2104.madlads.nodeServerAPI.controller.NodeAPI
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
deleteNode(com.fasterxml.jackson.databind.node.ObjectNode payload)
Method for removing a node from the listMethod for returning all nodes as a JSON object Loops through the entire list of all nodes and adds their information to a Json object and then adds that to a JSOn arrayboolean
putNode(com.fasterxml.jackson.databind.node.ObjectNode payload)
Method for adding a node to the list of all node
-
Constructor Details
-
NodeAPI
public NodeAPI()
-
-
Method Details
-
getAllNodes
@CrossOrigin(origins="http://localhost:8080") @RequestMapping(value="/getAllNodes", method=GET) public String getAllNodes() throws org.json.JSONExceptionMethod for returning all nodes as a JSON object Loops through the entire list of all nodes and adds their information to a Json object and then adds that to a JSOn array- Returns:
- A Json Array with all the nodes
- Throws:
org.json.JSONException
- If we encounter a problem
-
putNode
@CrossOrigin(origins="http://localhost:8080") @PostMapping("/putNode") public boolean putNode(@RequestBody com.fasterxml.jackson.databind.node.ObjectNode payload)Method for adding a node to the list of all node- Parameters:
payload
- Takes in a JSON object as a payload- Returns:
- return true if node is added, else if not
-
deleteNode
@CrossOrigin(origins="http://localhost:8080") @RequestMapping(value="/deleteNode", method=DELETE) public boolean deleteNode(@RequestBody com.fasterxml.jackson.databind.node.ObjectNode payload)Method for removing a node from the list- Parameters:
payload
- The node as a json object- Returns:
- return true if node is removed, else if not
-
deleteAllNodes
@CrossOrigin(origins="http://localhost:8080") @RequestMapping(value="/deleteAllNodes", method=DELETE) public void deleteAllNodes()
-