Rest-Urls ********* RestTest - GET -------------- curl -X 'GET' 'https://tools.inter-net.de/rest/rest-test/aaa' -H 'accept: application/json' -H 'Content-Type: application/json' RestTest - DELETE ----------------- curl -X 'DELETE' 'https://tools.inter-net.de/rest/rest-test/aaa' -H 'accept: application/json' -H 'Content-Type: application/json' RestTest - PUT -------------- curl -X 'PUT' \ 'https://tools.inter-net.de/rest/rest-test/' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "value": "aaa" }' RestTest - POST -------------- curl -X 'POST' \ 'https://tools.inter-net.de/rest/rest-test/' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ -d '{ "value": "aaa" }'