Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iulianoroberto/restful_webservice_jax-rs

Implementation by JAX-RS of RESTful Web service in Java.
https://github.com/iulianoroberto/restful_webservice_jax-rs

cxf cxf-service java jax-rs middleware web webservice

Last synced: about 2 months ago
JSON representation

Implementation by JAX-RS of RESTful Web service in Java.

Awesome Lists containing this project

README

        

# RESTful_WebService_JAX-RS
Implementation by JAX-RS of RESTful Web service in Java.

Implementation of a RESTful Web service to manage an eShop exposing the following operations listed as methods in a Java interface:
- public Items getItemList();
- public Response createItem(Item item);
- public Item getItemDetails(String code);
- public void deleteItem(String code);
- public Response orderItem(String code);
- public Order getOrder(String code, int oid);