CDI stereotypes are an API construct that help you group together similar architectural patterns into one annotation. In the restaurant application you learned about in Chapter 8, there is a class named QueryService that you need to transform into a transactional, logged, request scoped bean to carry out a query service in the data layer.
Lines 1-3 use the @RequestScoped, @Transactional ...