java.lang.Object
ntnu.idatt2104.madlads.nodeServerAPI.controller.NodeAPI

@RestController @RequestMapping("/api") public class NodeAPI extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    boolean
    deleteNode​(com.fasterxml.jackson.databind.node.ObjectNode payload)
    Method for removing a node from the list
    Method 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
    boolean
    putNode​(com.fasterxml.jackson.databind.node.ObjectNode payload)
    Method for adding a node to the list of all node

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • NodeAPI

      public NodeAPI()
  • Method Details

    • getAllNodes

      @CrossOrigin(origins="http://localhost:8080") @RequestMapping(value="/getAllNodes", method=GET) public String getAllNodes() throws org.json.JSONException
      Method 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()