blob: 71b10aed080ab6aab5e8e0fc329ba6c597694260 (
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/*
* 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.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
/**
*
* @author Jan
*/
@WebService
@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
*/
@WebMethod
public @WebResult(name="newArtikelId") long createArtikel(
@WebParam(name="artikel") 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
*/
@WebMethod
public @WebResult(name="artikel") Artikel readArtikel(
@WebParam(name="artikelId") 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
*/
@WebMethod
public @WebResult(name="allArtikel") 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
*/
@WebMethod
public void updateArtikel(
@WebParam(name="artikel") Artikel artikel){
em.merge(artikel);
}
/**
* Entfernt einen Artikel mit der angegebenen Artikel-Id
* @param artikelId
*/
@WebMethod
public void deleteArtikel(
@WebParam(name="artikelId") long artikelId){
Artikel artikel = em.find(Artikel.class, artikelId );
em.remove(artikel);
}
/**
* entfernt alle Artikel
*/
@WebMethod
public void deleteAllArtikel(){
for(Artikel artikel : readAllArtikel()){
deleteArtikel( artikel.getId() );
}
}
/**
* Prüft ob es einen Artikel mit angegebener Artikel-Id gibt
* @param artikelId
* @return
*/
@WebMethod
public @WebResult(name="existiert") boolean existsArtikel(
@WebParam(name="artikelId") long artikelId){
Artikel artikel = em.find(Artikel.class, artikelId );
if(artikel != null)
return true;
return false;
}
}
|