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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 11:50:20 EST 2009


Author: jaikiran
Date: 2009-12-22 11:50:19 -0500 (Tue, 22 Dec 2009)
New Revision: 98256

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

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/endpoint/MessageEndpointFactory.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/endpoint/MessageEndpointFactory.java	2009-12-22 16:50:12 UTC (rev 98255)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jca-api/src/main/javax/resource/spi/endpoint/MessageEndpointFactory.java	2009-12-22 16:50:19 UTC (rev 98256)
@@ -1,78 +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.spi.endpoint;
-
-import java.lang.NoSuchMethodException;
-import javax.transaction.xa.XAResource;
-import javax.resource.spi.UnavailableException;
-
-/**
- * This serves as a factory for creating message endpoints.
- *
- * @version 1.0
- * @author  Ram Jeyaraman
- */
-public interface MessageEndpointFactory {
-
-    /**
-     * This is used to create a message endpoint. The message endpoint is
-     * expected to implement the correct message listener type.
-     *
-     * @param xaResource an optional <code>XAResource</code> 
-     * instance used to get transaction notifications when the message delivery
-     * is transacted.
-     *
-     * @return a message endpoint instance.
-     *
-     * @throws UnavailableException indicates a transient failure
-     * in creating a message endpoint. Subsequent attempts to create a message
-     * endpoint might succeed.
-     */
-    MessageEndpoint createEndpoint(XAResource xaResource)
-	throws UnavailableException;
-
-    /**
-     * This is used to find out whether message deliveries to a target method
-     * on a message listener interface that is implemented by a message 
-     * endpoint will be transacted or not. 
-     *
-     * The message endpoint may indicate its transacted delivery preferences 
-     * (at a per method level) through its deployment descriptor. The message 
-     * delivery preferences must not change during the lifetime of a 
-     * message endpoint. 
-     * 
-     * @param method description of a target method. This information about
-     * the intended target method allows an application server to find out 
-     * whether the target method call will be transacted or not.
-     *
-     * @throws NoSuchMethodException indicates that the specified method
-     * does not exist on the target endpoint.
-     *
-     * @return true, if message endpoint requires transacted message delivery.
-     */
-    boolean isDeliveryTransacted(java.lang.reflect.Method method)
-	throws NoSuchMethodException;
-}
-
-
-




More information about the jboss-cvs-commits mailing list