[jboss-cvs] JBossAS SVN: r98830 - projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Dec 22 13:09:32 EST 2009


Author: jaikiran
Date: 2009-12-22 13:09:32 -0500 (Tue, 22 Dec 2009)
New Revision: 98830

Removed:
   projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/Topic.java
Log:
Autoversioning commit:  a non-deltaV client made a change to
/projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/Topic.java

Deleted: projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/Topic.java
===================================================================
--- projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/Topic.java	2009-12-22 18:09:25 UTC (rev 98829)
+++ projects/javaee/tags/jboss-javaee-parent-6.0.0-alpha-1/jboss-jms-api/src/main/javax/jms/Topic.java	2009-12-22 18:09:32 UTC (rev 98830)
@@ -1,80 +0,0 @@
-/*
- * 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.jms;
-
-/** A <CODE>Topic</CODE> object encapsulates a provider-specific topic name. 
- * It is the way a client specifies the identity of a topic to JMS API methods.
- * For those methods that use a <CODE>Destination</CODE> as a parameter, a 
- * <CODE>Topic</CODE> object may used as an argument . For 
- * example, a Topic can be used to create a <CODE>MessageConsumer</CODE>
- * and a <CODE>MessageProducer</CODE>
- * by calling:
- *<UL>
- *<LI> <CODE>Session.CreateConsumer(Destination destination)</CODE>
- *<LI> <CODE>Session.CreateProducer(Destination destination)</CODE>
- *
- *</UL>
- *
- * <P>Many publish/subscribe (pub/sub) providers group topics into hierarchies 
- * and provide various options for subscribing to parts of the hierarchy. The 
- * JMS API places no restriction on what a <CODE>Topic</CODE> object 
- * represents. It may be a leaf in a topic hierarchy, or it may be a larger 
- * part of the hierarchy.
- *
- * <P>The organization of topics and the granularity of subscriptions to 
- * them is an important part of a pub/sub application's architecture. The JMS 
- * API 
- * does not specify a policy for how this should be done. If an application 
- * takes advantage of a provider-specific topic-grouping mechanism, it 
- * should document this. If the application is installed using a different 
- * provider, it is the job of the administrator to construct an equivalent 
- * topic architecture and create equivalent <CODE>Topic</CODE> objects.
- *
- * @see        Session#createConsumer(Destination)
- * @see        Session#createProducer(Destination)
- * @see        javax.jms.TopicSession#createTopic(String)
- */
-
-public interface Topic extends Destination
-{
-
-   /** Gets the name of this topic.
-    *  
-    * <P>Clients that depend upon the name are not portable.
-    *  
-    * @return the topic name
-    *  
-    * @exception JMSException if the JMS provider implementation of 
-    *                         <CODE>Topic</CODE> fails to return the topic
-    *                         name due to some internal
-    *                         error.
-    */
-
-   String getTopicName() throws JMSException;
-
-   /** Returns a string representation of this object.
-    *
-    * @return the provider-specific identity values for this topic
-    */
-
-   String toString();
-}




More information about the jboss-cvs-commits mailing list