/* * IronJacamar, a Java EE Connector Architecture implementation * Copyright 2013, Red Hat Inc, 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 Eclipse Public License 1.0 as * published by the Free Software Foundation. * * 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 Eclipse * Public License for more details. * * You should have received a copy of the Eclipse 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. * @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; }