public Coffee getCoffeeById()

in eap-coffee-app/src/main/java/cafe/web/rest/CafeResource.java [39:41]


	public Coffee getCoffeeById(@PathParam("id") Long coffeeId) {
		return this.cafeRepository.findCoffeeById(coffeeId);
	}