[Jboss-cvs] JBossAS SVN: r57016 - trunk/messaging/src/main/org/jboss/mq/server

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Sep 20 12:07:29 EDT 2006


Author: adrian at jboss.org
Date: 2006-09-20 12:07:27 -0400 (Wed, 20 Sep 2006)
New Revision: 57016

Modified:
   trunk/messaging/src/main/org/jboss/mq/server/ClientMonitorInterceptor.java
Log:
Remove useless javadoc that is better described on the interface anyway.

Modified: trunk/messaging/src/main/org/jboss/mq/server/ClientMonitorInterceptor.java
===================================================================
--- trunk/messaging/src/main/org/jboss/mq/server/ClientMonitorInterceptor.java	2006-09-20 16:03:46 UTC (rev 57015)
+++ trunk/messaging/src/main/org/jboss/mq/server/ClientMonitorInterceptor.java	2006-09-20 16:07:27 UTC (rev 57016)
@@ -108,25 +108,12 @@
       return getNext().getTemporaryTopic(dc);
    }
 
-   /**
-    * Gets the TemporaryQueue attribute of the ServerIL object
-    *
-    * @param dc             Description of Parameter
-    * @return               The TemporaryQueue value
-    * @exception JMSException  Description of Exception
-    */
    public TemporaryQueue getTemporaryQueue(ConnectionToken dc) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       return getNext().getTemporaryQueue(dc);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @exception JMSException  Description of Exception
-    */
    public void connectionClosing(ConnectionToken dc) throws JMSException
    {
       synchronized (clients)
@@ -138,27 +125,12 @@
       getNext().connectionClosing(dc);
    }
 
-   /**
-    * Add the message to the destination.
-    *
-    * @param dc             The feature to be added to the Message attribute
-    * @param message        The feature to be added to the Message attribute
-    * @exception JMSException  Description of Exception
-    */
    public void addMessage(ConnectionToken dc, SpyMessage message) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       getNext().addMessage(dc, message);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param dest           Description of Parameter
-    * @return               Description of the Returned Value
-    * @exception JMSException  Description of Exception
-    */
    public Queue createQueue(ConnectionToken dc, String dest) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
@@ -166,40 +138,18 @@
 
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param dest           Description of Parameter
-    * @return               Description of the Returned Value
-    * @exception JMSException  Description of Exception
-    */
    public Topic createTopic(ConnectionToken dc, String dest) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       return getNext().createTopic(dc, dest);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param dest           Description of Parameter
-    * @exception JMSException  Description of Exception
-    */
    public void deleteTemporaryDestination(ConnectionToken dc, SpyDestination dest) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       getNext().deleteTemporaryDestination(dc, dest);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param t              Description of Parameter
-    * @exception JMSException  Description of Exception
-    */
    public void transact(ConnectionToken dc, TransactionRequest t) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
@@ -207,92 +157,42 @@
 
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param item           Description of Parameter
-    * @exception JMSException  Description of Exception
-    */
    public void acknowledge(ConnectionToken dc, AcknowledgementRequest item) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       getNext().acknowledge(dc, item);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param dest           Description of Parameter
-    * @param selector       Description of Parameter
-    * @return               Description of the Returned Value
-    * @exception JMSException  Description of Exception
-    */
    public SpyMessage[] browse(ConnectionToken dc, Destination dest, String selector) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       return getNext().browse(dc, dest, selector);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param subscriberId   Description of Parameter
-    * @param wait           Description of Parameter
-    * @return               Description of the Returned Value
-    * @exception JMSException  Description of Exception
-    */
    public SpyMessage receive(ConnectionToken dc, int subscriberId, long wait) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       return getNext().receive(dc, subscriberId, wait);
    }
 
-   /**
-    * Sets the Enabled attribute of the ServerIL object
-    *
-    * @param dc             The new Enabled value
-    * @param enabled        The new Enabled value
-    * @exception JMSException  Description of Exception
-    */
    public void setEnabled(ConnectionToken dc, boolean enabled) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       getNext().setEnabled(dc, enabled);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc              Description of Parameter
-    * @param subscriptionId  Description of Parameter
-    * @exception JMSException   Description of Exception
-    */
    public void unsubscribe(ConnectionToken dc, int subscriptionId) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       getNext().unsubscribe(dc, subscriptionId);
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param id             Description of Parameter
-    * @exception JMSException  Description of Exception
-    */
    public void destroySubscription(ConnectionToken dc, DurableSubscriptionID id) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();
       getNext().destroySubscription(dc, id);
    }
 
-   /**
-    * @param dc                       org.jboss.mq.ConnectionToken
-    * @param s                        org.jboss.mq.Subscription
-    * @exception JMSException  The exception description.
-    */
    public void subscribe(org.jboss.mq.ConnectionToken dc, org.jboss.mq.Subscription s) throws JMSException
    {
 
@@ -301,13 +201,6 @@
 
    }
 
-   /**
-    * #Description of the Method
-    *
-    * @param dc             Description of Parameter
-    * @param clientTime     Description of Parameter
-    * @exception JMSException  Description of Exception
-    */
    public void ping(ConnectionToken dc, long clientTime) throws JMSException
    {
       getClientStats(dc).lastUsed = System.currentTimeMillis();




More information about the jboss-cvs-commits mailing list