[jboss-cvs] JBossAS SVN: r98287 - projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 11:54:14 EST 2009


Author: jaikiran
Date: 2009-12-22 11:54:14 -0500 (Tue, 22 Dec 2009)
New Revision: 98287

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/ManagedConnectionMetaData.java
Log:
Autoversioning commit:  a non-deltaV client made a change to
/projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/ManagedConnectionMetaData.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/ManagedConnectionMetaData.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/ManagedConnectionMetaData.java	2009-12-22 16:54:07 UTC (rev 98286)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/ManagedConnectionMetaData.java	2009-12-22 16:54:14 UTC (rev 98287)
@@ -1,77 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source
-* Copyright 2008, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
-
-package javax.resource.spi;
-
-import javax.resource.ResourceException;
-
-/** The ManagedConnectionMetaData interface provides information about the 
- *  underlying EIS instance associated with a ManagedConnection instance.
- *  An application server uses this information to get runtime information
- *  about a connected EIS instance.
- *
- *  <p>The method ManagedConnection.getMetaData returns a 
- *  ManagedConnectionMetaData instance.
- *  
- *  @version     0.8
- *  @author      Rahul Sharma
- *  @see         javax.resource.spi.ManagedConnection
-**/
-
-public interface ManagedConnectionMetaData {
-
-  /** Returns Product name of the underlying EIS instance connected 
-   *  through the ManagedConnection.
-   *
-   *  @return  Product name of the EIS instance.
-  **/
-  public
-  String getEISProductName() throws ResourceException;
-
-  /** Returns product version of the underlying EIS instance connected 
-   *  through the ManagedConnection.
-   *
-   *  @return  Product version of the EIS instance
-  **/
-  public
-  String getEISProductVersion() throws ResourceException;
-
-  /** Returns maximum limit on number of active concurrent connections 
-   *  that an EIS instance can support across client processes. If an EIS 
-   *  instance does not know about (or does not have) any such limit, it 
-   *  returns a 0.
-   *
-   *  @return  Maximum limit for number of active concurrent connections
-  **/
-  public
-  int getMaxConnections() throws ResourceException;
-  
-  /** Returns name of the user associated with the ManagedConnection
-   *  instance. The name corresponds to the resource principal under whose
-   *  whose security context, a connection to the EIS instance has been
-   *  established.
-   *
-   *  @return  name of the user
-  **/
-  public
-  String getUserName() throws ResourceException;
-}




More information about the jboss-cvs-commits mailing list