@@ -25,7 +25,7 @@ public void test() {
25
25
26
26
Transaction transaction = session .beginTransaction ();
27
27
Map item1 = new HashMap ();
28
- item1 .put ( "id" , 33 );
28
+ item1 .put ( "id" , "33" );
29
29
item1 .put ( "firstName" , "Ron" );
30
30
item1 .put ( "lastName" , "Don" );
31
31
item1 .
put (
"email" ,
"[email protected] " );
@@ -34,7 +34,7 @@ public void test() {
34
34
35
35
Transaction transaction2 = session .beginTransaction ();
36
36
Map item2 = new HashMap ();
37
- item2 .put ( "id" , 12 );
37
+ item2 .put ( "id" , "12" );
38
38
item2 .put ( "firstName" , "Danni" );
39
39
item2 .put ( "lastName" , "Din" );
40
40
item2 .
put (
"email" ,
"[email protected] " );
@@ -48,7 +48,7 @@ public void test() {
48
48
49
49
Transaction transaction3 = session .beginTransaction ();
50
50
Map item3 = new HashMap ();
51
- item3 .put ( "id" , 51 );
51
+ item3 .put ( "id" , "51" );
52
52
item3 .put ( "firstName" , "John" );
53
53
item3 .put ( "lastName" , "Scott" );
54
54
item3 .
put (
"email" ,
"[email protected] " );
@@ -57,7 +57,7 @@ public void test() {
57
57
58
58
Transaction transaction4 = session .beginTransaction ();
59
59
Map item4 = new HashMap ();
60
- item4 .put ( "id" , 12 );
60
+ item4 .put ( "id" , "12" );
61
61
item4 .put ( "firstName" , "Danni" );
62
62
item4 .put ( "lastName" , "Chin" );
63
63
item4 .
put (
"email" ,
"[email protected] " );
0 commit comments