[jboss-cvs] JBossAS SVN: r98311 - 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:18 EST 2009


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

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

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/RecordFactory.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/RecordFactory.java	2009-12-22 16:57:10 UTC (rev 98310)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/cci/RecordFactory.java	2009-12-22 16:57:17 UTC (rev 98311)
@@ -1,87 +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 java.util.Map;
-import java.util.Collection;
-import javax.resource.ResourceException;
-import javax.resource.NotSupportedException;
-
-
-/** The RecordFactory interface is used for creating MappedRecord and 
- *  IndexedRecord instances. Note that the RecordFactory is only used 
- *  for creation of generic record instances. A CCI implementation 
- *  provides an implementation class for the RecordFactory interface.
- *
- *  @author   Rahul Sharma
- *  @since    0.8
- *  @see      javax.resource.cci.IndexedRecord
- *  @see      javax.resource.cci.MappedRecord
-**/
-public interface RecordFactory {
-  
-  /** Creates a MappedRecord. The method takes the name of the record
-   *  that is to be created by the RecordFactory. The name of the 
-   *  record acts as a pointer to the meta information (stored in 
-   *  the metadata repository) for a specific record type.
-   *
-   *  @param  recordName   Name of the Record
-   *  @return MappedRecord
-   *  @throws ResourceException  Failed to create a MappedRecord.
-   *                             Example error cases are:
-   *                              
-   *          <UL>
-   *             <LI> Invalid specification of record name
-   *             <LI> Resource adapter internal error
-   *             <LI> Failed to access metadata repository
-   *          </UL>
-   *  @throws NotSupportedException Operation not supported          
-   *                            
-  **/
-  public
-  MappedRecord createMappedRecord(String recordName) 
-                  throws ResourceException;
-
-  /** Creates a IndexedRecord. The method takes the name of the record
-   *  that is to be created by the RecordFactory. The name of the 
-   *  record acts as a pointer to the meta information (stored in 
-   *  the metadata repository) for a specific record type.
-   *
-   *  @param  recordName   Name of the Record
-   *  @return IndexedRecord
-   *  @throws ResourceException  Failed to create an IndexedRecord.
-   *                             Example error cases are:
-   *                              
-   *          <UL>
-   *             <LI> Invalid specification of record name
-   *             <LI> Resource adapter internal error
-   *             <LI> Failed to access metadata repository
-   *          </UL>
-   *  @throws NotSupportedException Operation not supported          
- **/
-  public
-  IndexedRecord createIndexedRecord(String recordName) 
-                  throws ResourceException;
-
-}
-




More information about the jboss-cvs-commits mailing list