(no commit message)
[utils] / wicket / components / src / main / java / org / wamblee / wicket / behavior / FlushEntityManagerBehavior.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.wicket.behavior;
17
18 import java.util.logging.Level;
19 import java.util.logging.Logger;
20
21 import javax.annotation.Resource;
22 import javax.persistence.EntityManager;
23 import javax.persistence.PersistenceException;
24 import javax.persistence.TransactionRequiredException;
25 import javax.transaction.Status;
26 import javax.transaction.SystemException;
27 import javax.transaction.UserTransaction;
28
29 import org.apache.wicket.markup.html.WebPage;
30
31 /**
32  * Behavior to flush the entity manager after rendering of the page.
33  * 
34  * @author Erik Brakkee
35  * 
36  */
37 public class FlushEntityManagerBehavior extends AbstractPageBehavior {
38
39     private static final Logger LOGGER = Logger
40         .getLogger(FlushEntityManagerBehavior.class.getName());
41
42     private EntityManager entityManager;
43
44     /**
45      * Constructs the behavior.
46      * 
47      * @param aEntityManager
48      *            Contextual reference to an entitymanager.
49      */
50     public FlushEntityManagerBehavior(EntityManager aEntityManager) {
51         entityManager = aEntityManager;
52     }
53
54     @Override
55     public void onAfterRender(WebPage aPage) {
56         try {
57             if (entityManager.isOpen()) {
58                 entityManager.flush();
59             }
60         } catch (TransactionRequiredException e) {
61             throw e;
62         } catch (PersistenceException e) {
63             throw e;
64         } catch (Exception e) {
65             LOGGER.log(Level.WARNING, "Could not flush entitymanager", e);
66         }
67     }
68
69 }