<#-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->

Minerva Connection Objects


Refresh
<#assign groups = delegator.getModelGroupReader().getGroupNames(delegator.getDelegatorName())?if_exists/> <#assign alt_row = false> <#if (groups?has_content)> <#list groups as group> <#assign helper = delegator.getGroupHelperName(group)?if_exists/> <#if (helper?has_content)> <#assign pooledObjs = Static["org.ofbiz.entity.connection.MinervaConnectionFactory"].getPooledData(helper)?if_exists/> <#assign pool = Static["org.ofbiz.entity.connection.MinervaConnectionFactory"].getPoolName(helper)?if_exists/> <#if (pooledObjs?has_content)> <#list pooledObjs as obj> <#assign isTx = (obj.getCurrentXid()?has_content)/> <#if ((obj.isInUse())?default(false))> <#assign color = "red"/> <#else> <#assign color = "green"/> class="alternate-row"> <#assign alt_row = !alt_row> <#else>
Helper Name Pool Thread In Tx Timeout Object Created Last Used In Use
${helper} ${pool} ${(obj.getThread().getName())?default("n/a")} ${(isTx)?default("n/a")?string} ${(obj.getTransactionTimeout())?default(-1)?string} ${(obj.getObject().toString())?default("n/a")} ${obj.getCreationDate()?datetime?default("n/a")?string} ${obj.getLastUsedDate()?datetime?default("n/a")?string} ${obj.isInUse()?default(false)?string}
No helpers found.