Return-Path: Delivered-To: apmail-incubator-geronimo-cvs-archive@www.apache.org Received: (qmail 6213 invoked from network); 20 Jan 2004 06:59:25 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 20 Jan 2004 06:59:25 -0000 Received: (qmail 33652 invoked by uid 500); 20 Jan 2004 06:59:01 -0000 Delivered-To: apmail-incubator-geronimo-cvs-archive@incubator.apache.org Received: (qmail 33619 invoked by uid 500); 20 Jan 2004 06:59:01 -0000 Mailing-List: contact geronimo-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: geronimo-dev@incubator.apache.org Delivered-To: mailing list geronimo-cvs@incubator.apache.org Received: (qmail 33605 invoked from network); 20 Jan 2004 06:59:00 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 20 Jan 2004 06:59:00 -0000 Received: (qmail 6189 invoked by uid 1712); 20 Jan 2004 06:59:22 -0000 Date: 20 Jan 2004 06:59:22 -0000 Message-ID: <20040120065922.6188.qmail@minotaur.apache.org> From: djencks@apache.org To: incubator-geronimo-cvs@apache.org Subject: cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/connector/outbound ConnectionManagerDeployment.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N djencks 2004/01/19 22:59:22 Modified: modules/core/src/java/org/apache/geronimo/connector/outbound ConnectionManagerDeployment.java Log: oops, can't abandon GeronimoMBean support quite yet Revision Changes Path 1.12 +2 -2 incubator-geronimo/modules/core/src/java/org/apache/geronimo/connector/outbound/ConnectionManagerDeployment.java Index: ConnectionManagerDeployment.java =================================================================== RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/connector/outbound/ConnectionManagerDeployment.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ConnectionManagerDeployment.java 20 Jan 2004 06:13:38 -0000 1.11 +++ ConnectionManagerDeployment.java 20 Jan 2004 06:59:22 -0000 1.12 @@ -405,7 +405,7 @@ mBeanInfo.addEndpoint(new GeronimoMBeanEndpoint("RealmBridge", RealmBridge.class, ObjectName.getInstance("geronimo.connector:role=SecurityDomain"), false)); mBeanInfo.addAttributeInfo(new GeronimoAttributeInfo("BlockingTimeout", true, true, "Milliseconds to wait for a connection to be returned")); - mBeanInfo.addAttributeInfo(new GeronimoAttributeInfo("JndiName", true, true, "Name to use to identify this guy (needs refactoring of naming conventions)")); + mBeanInfo.addAttributeInfo(new GeronimoAttributeInfo("Name", true, true, "Name to use to identify this guy (needs refactoring of naming conventions)")); mBeanInfo.addAttributeInfo(new GeronimoAttributeInfo("MaxSize", true, true, "Maximum number of ManagedConnections to create in each pool")); mBeanInfo.addAttributeInfo(new GeronimoAttributeInfo("UseConnectionRequestInfo", true, true, "Select pool using app-supplied ConnectionRequestInfo")); mBeanInfo.addAttributeInfo(new GeronimoAttributeInfo("UseTransactions", true, true, "Use local or xa transactions vs. no transactions"));