1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.transport.jms.weblogic; 8 9 import org.mule.api.MuleContext; 10 import org.mule.transport.jms.JmsConnector; 11 12 /** 13 * Weblogic-specific JMS connector. 14 */ 15 public class WeblogicJmsConnector extends JmsConnector 16 { 17 /** Constructs a new WeblogicJmsConnector. */ 18 public WeblogicJmsConnector(MuleContext context) 19 { 20 super(context); 21 setTopicResolver(new WeblogicJmsTopicResolver(this)); 22 } 23 }