Examples of entityManagerMethodEnd()


Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

                cleanupNonTxEntityManager();
            }
            throw re;
        } finally {
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
        return returnValue;
    }
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

                callFlowAgent.entityManagerMethodStart(EntityManagerMethod.REFRESH);
            }
            _getDelegate().refresh(entity);
        } finally {
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
       
        // tx is required so there's no need to do any non-tx cleanup
    }
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

        } finally {
            if( nonTxEntityManager != null ) {
                cleanupNonTxEntityManager();
            }
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
    }

    public void close() {
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

    public void close() {
        Agent callFlowAgent = Switch.getSwitch().getCallFlowAgent();
        if(callFlowAgent.isEnabled()) {
            callFlowAgent.entityManagerMethodStart(EntityManagerMethod.CLOSE);
            callFlowAgent.entityManagerMethodEnd();
        }
        // close() not allowed on container-managed EMs.
        throw new IllegalStateException();
    }
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

    public boolean isOpen() {
        Agent callFlowAgent = Switch.getSwitch().getCallFlowAgent();
        if(callFlowAgent.isEnabled()) {
            callFlowAgent.entityManagerMethodStart(EntityManagerMethod.IS_OPEN);
            callFlowAgent.entityManagerMethodEnd();
        }
        // Not relevant for container-managed EMs.  Just return true.
        return true;
    }
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

        } finally {
            if( nonTxEntityManager != null ) {
                cleanupNonTxEntityManager();
            }
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
    }

    public void lock(Object entity, LockModeType lockMode) {
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

        } finally {
            if( nonTxEntityManager != null ) {
                cleanupNonTxEntityManager();
            }
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
    }

    public void clear() {
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

        } finally {
            if( nonTxEntityManager != null ) {
                cleanupNonTxEntityManager();
            }
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
    }

    public Object getDelegate() {
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

                // before returning it to the application, so we just clear
                // the EM wrapper's reference to it. 
                nonTxEntityManager = null;
            }
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }

    }
View Full Code Here

Examples of com.sun.enterprise.admin.monitor.callflow.Agent.entityManagerMethodEnd()

        } finally {
            if( nonTxEntityManager != null ) {
                cleanupNonTxEntityManager();
            }
            if(callFlowAgent.isEnabled()) {
                callFlowAgent.entityManagerMethodEnd();
            }
        }
    }

    public void setFlushMode(FlushModeType flushMode) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.