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.soap.axis;
8
9
10 /**
11 * <code>WsdlServiceFinder</code> finds a the connector service to use by checking
12 * the classpath for jars required for each of the soap connector implementations
13 */
14 public class WsdlServiceFinder extends SoapServiceFinder
15 {
16 private static final String PROTOCOL_PREFIX = "wsdl-";
17
18 protected String getProtocolFromKey(String key)
19 {
20 return PROTOCOL_PREFIX + super.getProtocolFromKey(key);
21 }
22
23 }