AbstractTestDataBuilder.java
1.89 KB
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
package net.ziemers.swxercise.lg.testdatabuilder;
import javax.persistence.EntityManager;
public abstract class AbstractTestDataBuilder<T> {
private static int count = 0;
private EntityManager entityManager;
/**
* Creates an new TestdataBuilder with persistence.
*
* @param entityManager
*/
public AbstractTestDataBuilder(final EntityManager entityManager) {
this.entityManager = entityManager;
}
/**
* Creates an new TestdataBuilder without persistence.
*/
public AbstractTestDataBuilder() {
}
public abstract T build();
/**
* Returns the EntityManager or null.
*
* @return {@link EntityManager} or null
*/
protected final EntityManager getEntityManager() {
return entityManager;
}
/**
* Ensure the TestdataBuilder is constructed with a
* {@link EntityManager}
*
* @throws IllegalStateException
* if the TestdataBuilder is constructed without a
* {@link EntityManager}
*/
protected final void ensureEntityManager() {
if (entityManager == null) {
throw new IllegalStateException("Cannot persist w/o entity manager");
}
}
/**
* {@inheritDoc} Executed within a new transaction.
*
* @throws IllegalStateException
* if the TestdataBuilder is constructed without a
* {@link EntityManager}
*/
public final T buildAndSave() {
ensureEntityManager();
try {
final T obj = build();
entityManager.persist(obj);
return obj;
} catch (Exception e) {
throw new RuntimeException(e);
}
}
/**
* Returns an integer value from an static counter.
*
* @return value of the static counter.
*/
protected final int getId() {
return count++;
}
}