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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 11:57:10 EST 2009


Author: jaikiran
Date: 2009-12-22 11:57:10 -0500 (Tue, 22 Dec 2009)
New Revision: 98310

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/ResultSetInfo.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/cci/ResultSetInfo.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/ResultSetInfo.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/ResultSetInfo.java	2009-12-22 16:57:03 UTC (rev 98309)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/ResultSetInfo.java	2009-12-22 16:57:10 UTC (rev 98310)
@@ -1,172 +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.cci;
-
-
-import javax.resource.ResourceException;
-
-/** The interface <code>javax.resource.cci.ResultSetInfo</code> provides
- *  information on the support provided for ResultSet by a connected 
- *  EIS instance. A component calls the method 
- *  <code>Connection.getResultInfo</code> to get the ResultSetInfo instance. 
- * 
- *  <p>A CCI implementation is not required to support 
- *  <code>javax.resource.cci.ResultSetInfo</code> interface. The 
- *  implementation of this interface is provided only if the CCI 
- *  supports the ResultSet facility.
- * 
- *  @version     0.9
- *  @author      Rahul Sharma
- *  @see         javax.resource.cci.Connection
- *  @see         java.sql.ResultSet
- *  @see         javax.resource.cci.ConnectionMetaData
-**/
-
-public interface ResultSetInfo {
-  
-  /** Indicates whether or not a visible row update can be detected 
-   *  by calling the method <code>ResultSet.rowUpdated</code>.
-   *
-   * @param   type    type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return          true if changes are detected by the result set 
-   *                  type; false otherwise
-   * @see     java.sql.ResultSet#rowUpdated
-   * @throws  ResourceException   Failed to get the information
-  **/
-  public 
-  boolean updatesAreDetected(int type)  throws ResourceException;
-
-  /** Indicates whether or not a visible row insert can be detected
-   * by calling ResultSet.rowInserted.
-   *
-   * @param   type    type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return          true if changes are detected by the result set 
-   *                  type; false otherwise
-   * @see     java.sql.ResultSet#rowInserted
-   * @throws  ResourceException   Failed to get the information
-  **/
-  public 
-  boolean insertsAreDetected(int type)  throws ResourceException;
-	
-  /* Indicates whether or not a visible row delete can be detected by
-   * calling ResultSet.rowDeleted.  If deletesAreDetected
-   * returns false, then deleted rows are removed from the ResultSet.
-   *
-   * @param   type    type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return          true if changes are detected by the result set 
-   *                  type; false otherwise
-   * @see     java.sql.ResultSet#rowDeleted
-   * @throws  ResourceException   Failed to get the information
-  **/
-  public
-  boolean deletesAreDetected(int type)  throws ResourceException;
-  
-  /** Indicates whether or not a resource adapter supports a type
-   *  of ResultSet.
-   *     
-   * @param   type  type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return        true if ResultSet type supported; false otherwise
-   * @throws  ResourceException   Failed to get the information
-  **/
-  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/
-   *
-   * @param   type        type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @param   concurrency ResultSet concurrency type defined in
-   *                      java.sql.ResultSet
-   * @return  true if the specified combination supported; false otherwise
-   * @throws  ResourceException   Failed to get the information
-  **/
-  public 
-  boolean supportsResultTypeConcurrency(int type,
-					int concurrency)
-                                             throws ResourceException;
-
-
-  /** Indicates whether updates made by others are visible.
-   *
-   * @param    type       type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return              true if updates by others are visible for the
-   *                      ResultSet type; false otherwise
-   * @throws  ResourceException   Failed to get the information
-   */
-  public
-  boolean othersUpdatesAreVisible(int type)  throws ResourceException;
-
-  /**
-   * Indicates whether deletes made by others are visible.
-   *
-   * @param    type       type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return              true if deletes by others are visible for the
-   *                      ResultSet type; false otherwise
-   * @throws  ResourceException   Failed to get the information
-   */
-  public
-  boolean othersDeletesAreVisible(int type)  throws ResourceException;
-    
-  /**
-   * Indicates whether inserts made by others are visible.
-   *
-   * @param    type       type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return              true if inserts by others are visible for the
-   *                      ResultSet type; false otherwise
-   * @throws  ResourceException   Failed to get the information
-   */
-  public
-  boolean othersInsertsAreVisible(int type) throws ResourceException;
-
-
-  /* Indicates whether a ResultSet's own updates are visible.
-   *
-   * @param    type       type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return              true if updates are visible for the ResultSet
-   *                      type; false otherwise
-   * @throws  ResourceException   Failed to get the information
-  **/
-  public
-  boolean ownUpdatesAreVisible(int type) throws ResourceException;
-
-  /* Indicates whether a ResultSet's own inserts are visible.
-   *
-   * @param    type       type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return              true if inserts are visible for the ResultSet
-   *                      type; false otherwise
-   * @throws  ResourceException   Failed to get the information
-  **/  
-  public 
-  boolean ownInsertsAreVisible(int type) throws ResourceException;
-
-  /* Indicates whether a ResultSet's own deletes are visible.
-   *
-   * @param    type       type of the ResultSet i.e. ResultSet.TYPE_XXX
-   * @return              true if inserts are visible for the ResultSet
-   *                      type; false otherwise
-   * @throws  ResourceException   Failed to get the information
-  **/  
-  public 
-  boolean ownDeletesAreVisible(int type) throws ResourceException;
-
-}




More information about the jboss-cvs-commits mailing list