Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/mom4j/jms/TempQueueImpl.java


1   package org.mom4j.jms;
2   
3   
4   /**
5    *
6    * @version $Revision: 1.1.1.1 $ $Date: 2003/07/04 12:48:49 $
7    */
8   public class TempQueueImpl extends DestinationImpl implements javax.jms.TemporaryQueue {
9       
10      public static final String ID = "queue:";
11      
12  
13      public TempQueueImpl(String name) {
14          super(name);
15      }
16      
17  
18      public String getQueueName()
19          throws javax.jms.JMSException
20      {
21          return this.getName();
22      }
23      
24      
25      public String toString() {
26          return ID + this.getName();
27      }
28  
29  
30      public void delete()
31          throws javax.jms.JMSException
32      {
33      }
34      
35  }