We have decided to stop the maintenance of this public GitHub repository.
This is an example implementation of the YaaS Wishlist service based on Java. It shows how to implement a basic service and how to integrate with other services on YaaS.
This project is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file.
You can open the API Console in a separate window by using the following link:
This service provides REST endpoints for interacting with several YaaS services.
The endpoint /wishlists
enables you to:
The endpoint /wishlists/{wishlistId}/wishlistItems
enables you to:
See also WishlistService.java.
An email is sent to the wishlist owner when a wishlist is created. For more details, see the sendMail
method in WishlistService.java.
The endpoint /wishlists/{wishlistId}/media
enables you to:
See also WishlistMediaService.java
When a wishlist is being created, the implementation checks if its owner exists as a customer. You can find the details at the beginning of the POST method in WishlistService.java.
Showcase how a service can be written using Java. Demonstrate the integration with other services in YaaS, including authentication. Topics covered:
See the Setup Guide for instructions on how to configure this service.
Use mvn clean install
to build the service and run the tests.
Run the service locally by calling mvn jetty:run
, and navigate to the local API Console.
If you get failed tests while building with mvn clean install
, such as response code expected:201 but was:500
, then it might mean that the service can't connect to other YaaS services. This could be related to missing proxy settings.
Hint: In that case, you might want to try it out with:
mvn clean install -Dhttp.proxyPort=<proxyPort> -Dhttp.proxyHost=<proxyHost> -Dhttps.proxyPort=<proxyPort> -Dhttps.proxyHost=<proxyHost>