All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.resource.spi.ManagedConnectionMetaData Maven / Gradle / Ivy

There is a newer version: 1.0.1.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2008-2009, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file 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.
 *
 *  

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. * @exception ResourceException Thrown if an error occurs **/ public String getEISProductName() throws ResourceException; /** Returns product version of the underlying EIS instance connected * through the ManagedConnection. * * @return Product version of the EIS instance * @exception ResourceException Thrown if an error occurs **/ 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 * @exception ResourceException Thrown if an error occurs **/ 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 * @exception ResourceException Thrown if an error occurs **/ public String getUserName() throws ResourceException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy