blob: 07be3490a4fe0de83033bad296c5d925d610d79d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package beans.artikelManager;
import beans.*;
import entities.Artikel;
import exceptions.IdBereitsVergebenException;
import exceptions.UnbekanntesEntityException;
import java.util.List;
import javax.ejb.Stateless;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
/**
*
* @author Jan
*/
@Stateless(mappedName="ArtikelManagerBean")
public class ArtikelManagerBean implements ArtikelManagerRemote {
@PersistenceContext
private EntityManager em;
/**
* erstellt einen Artikel und liefert die Artikel-Id zurueck
* @param artikel
* @return Artikel-Id
*/
public long createArtikel(Artikel artikel) throws IdBereitsVergebenException {
try {
em.persist(artikel);
return artikel.getId();
}
catch(Exception e){
throw new IdBereitsVergebenException("Artikel-Id bereits vergeben: [id="+ artikel.getId()+"]");
}
}
/**
* Gibt einen Artikel anhand seiner Id zurueck
* @param artikelId
* @return
*/
public Artikel readArtikel( long artikelId) throws UnbekanntesEntityException{
Artikel artikel = em.find(Artikel.class, artikelId );
if (artikel == null)
throw new UnbekanntesEntityException("Artikel", artikelId);
return artikel;
}
/**
* gibt alle Artikel zurueck
* @return
*/
public List<Artikel> readAllArtikel(){
return (List<Artikel>)em.createQuery("SELECT a FROM Artikel a ORDER BY a.id").getResultList();
}
/**
* Schreibt die Änderungen eines Artikels in die Datenbank
* @param artikel
*/
public void updateArtikel( Artikel artikel){
em.merge(artikel);
}
/**
* Entfernt einen Artikel mit der angegebenen Artikel-Id
* @param artikelId
*/
public void deleteArtikel(long artikelId){
Artikel artikel = em.find(Artikel.class, artikelId );
em.remove(artikel);
}
/**
* entfernt alle Artikel
*/
public void deleteAllArtikel(){
for(Artikel artikel : readAllArtikel()){
deleteArtikel( artikel.getId() );
}
}
/**
* Prüft ob es einen Artikel mit angegebener Artikel-Id gibt
* @param artikelId
* @return
*/
public boolean existsArtikel(long artikelId){
Artikel artikel = em.find(Artikel.class, artikelId );
if(artikel != null)
return true;
return false;
}
}
|