Code Monkey home page Code Monkey logo

rackspace-rest's Introduction

rackspace-rest Test

Running the service

To start this web service, install Maven and execute the following command

mvn package

A war will be created. Deploy it to an application server.

Once the web service is started, it can be reached at

http://localhost:8080/rackspace/service/vehicle

REST Endpoints

The following REST endpoints are available upon deployment:

HTTP Verb URL Description Status Codes
GET http://localhost:8080/rackspace/service/vehicle Obtains a list of all existing vehicles
  • 200 OK
GET http://localhost:8080/rackspace/service/vehicle/{id} Obtains the vehicle corresponding to the supplied vehicle ID
  • 200 OK if vehicle exists
  • 404 Not Found if vehicle does not exist
POST http://localhost:8080/rackspace/service/vehicle Creates a new vehicle based on the payload contained in the request body
  • 201 Created if vehicle successfully created
PUT http://localhost:8080/rackspace/service/vehicle/{id} Updated an existing vehicle with the data contained in the request body
  • 200 OK if vehicle successfully updated
  • 404 Not Found if vehicle does not exist
DELETE http://localhost:8080/rackspace/service/vehicle/{id} Deletes an existing vehicle that corresponds to the supplied vehicle ID
  • 203 No Content if vehicle successfully deleted
  • 404 Not Found if vehicle does not exist

Use the following JSON structure when making a POST or PUT call:

{ "type": "truck", "description": "This is a big truck!", "costInCents": 9148937489723 }

{ "type": "train", "description": "This is a bullet train!!", "costInCents": 3812391283098219380 }

rackspace-rest's People

Contributors

mayank-aurea avatar mayankbindas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.