1 57 58 package org.apache.wsif.util.jms; 59 60 import javax.jms.Destination ; 61 import javax.jms.Queue ; 62 import javax.jms.QueueConnectionFactory ; 63 import org.apache.wsif.WSIFException; 64 65 69 class WSIFJMSFinderForMq extends WSIFJMSFinder { 70 71 private QueueConnectionFactory factory; 72 private Destination initialDestination; 73 private String style; 74 75 WSIFJMSFinderForMq(String jmsVendorURL, String implSpecURL) 76 throws WSIFException { 77 throw new WSIFException("not yet implemented"); 78 79 120 121 } 122 123 public QueueConnectionFactory getFactory() { 124 return factory; 125 } 126 127 public Destination getInitialDestination() { 128 return initialDestination; 129 } 130 131 String getStyle() { 132 return style; 133 } 134 135 Queue findQueue(String name) throws WSIFException { 136 return null; 137 } 138 } | Popular Tags |