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

javax.resource.cci.ResultSetInfo Maven / Gradle / Ivy

The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright 2005, 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.cci;

import javax.resource.ResourceException;

/**
 * The interface ResultSetInfo provides information on the support for the
 * ResultSet interface by an underlying resource. A component can retrieve a
 * ResultSetInfo from a Connection instance.
 * 
 * A resource only needs to support this interface if it also supports the
 * ResultSet interface.
 */
public interface ResultSetInfo
{
   /**
	 * Indicates whether or not a visible row delete can be detected.
	 */
   public boolean deletesAreDetected(int type) throws ResourceException;

   /**
	 * Indicates whether or not a visible row insert can be detected.
	 */
   public boolean insertsAreDetected(int type) throws ResourceException;

   /**
	 * Indicates whether deletes made by others are visible.
	 */
   public boolean othersDeletesAreVisible(int type) throws ResourceException;

   /**
	 * Indicates whether inserts made by others are visible.
	 */
   public boolean othersInsertsAreVisible(int type) throws ResourceException;

   /**
	 * Indicates whether updates made by others are visible.
	 */
   public boolean othersUpdatesAreVisible(int type) throws ResourceException;

   /**
	 * Indicates whether deletes made by self are visible.
	 */
   public boolean ownDeletesAreVisible(int type) throws ResourceException;

   /**
	 * Indicates whether inserts made by self are visible.
	 */
   public boolean ownInsertsAreVisible(int type) throws ResourceException;

   /**
	 * Indicates whether updates made by self are visible.
	 */
   public boolean ownUpdatesAreVisible(int type) throws ResourceException;

   /**
	 * Indicates whether or not an resource adapter supports the specified type
	 * of ResultSet.
	 */
   public boolean supportsResultSetType(int type) throws ResourceException;

   /**
	 * Indicates whether or not a resource adapter supports the concurrency type
	 * in combination with the given ResultSet type.
	 */
   public boolean supportsResultTypeConcurrency(int type, int concurrency) throws ResourceException;

   /**
	 * Indicates whether or not a visible row update can be detected.
	 */
   public boolean updatesAreDetected(int type) throws ResourceException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy