public Coffee findCoffeeById()

in eap-coffee-app/src/main/java/cafe/model/CafeRepository.java [42:46]


    public Coffee findCoffeeById(Long coffeeId) {
        logger.log(Level.INFO, "Finding the coffee with id {0}.", coffeeId);
        
        return this.entityManager.find(Coffee.class, coffeeId);
    }