Files
java-design-patterns/api-gateway/src/main/java/com/iluwatar/api/gateway/PriceService.java

16 lines
237 B
Java
Raw Normal View History

2016-02-07 17:05:33 -06:00
package com.iluwatar.api.gateway;
/**
* Represents a microservice used to retrieve price data.
*/
public class PriceService {
/**
* Gets the price
* @return the price
*/
public String getPrice() {
return "20";
}
}