]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE_App/GDE-ejb/src/java/com/edf/gde/ejb/StudyDAO.java
Salome HOME
dec6c1533b9ad4bb92ba5c20459c6ad2a88f3f2e
[modules/gde.git] / projects / GDE_App / GDE-ejb / src / java / com / edf / gde / ejb / StudyDAO.java
1 /*
2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 package com.edf.gde.ejb;
7
8 import javax.ejb.Stateless;
9 import javax.ejb.LocalBean;
10 import javax.persistence.EntityManager;
11 import javax.persistence.PersistenceContext;
12
13 /**
14  *
15  * @author F62173
16  */
17 @Stateless
18 @LocalBean
19 public class StudyDAO {
20     @PersistenceContext(unitName = "GDE-ejbPU")
21     private EntityManager em;
22     
23 }