Jean-Francois Leveque

Test Javadoc/SonarCube

...@@ -10,12 +10,12 @@ import javax.persistence.PersistenceContext; ...@@ -10,12 +10,12 @@ import javax.persistence.PersistenceContext;
10 */ 10 */
11 public class JpaConfiguration { 11 public class JpaConfiguration {
12 12
13 + /**
14 + * Injectable interface for persistence handling
15 + */
13 @Produces 16 @Produces
14 @RequestScoped 17 @RequestScoped
15 @PersistenceContext(unitName = "development-pu") 18 @PersistenceContext(unitName = "development-pu")
16 - /**
17 - * Interface injectable de gestion de la persistence
18 - */
19 public EntityManager entityManager; 19 public EntityManager entityManager;
20 20
21 } 21 }
......