Skip to content

Commit

Permalink
[JBWS-3885] Renamed JBossWSNonSpringConfigurer
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Jul 9, 2015
1 parent fc1fb38 commit b96e039
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Expand Up @@ -57,7 +57,7 @@ public Bus createBus(Map<Class<?>, Object> extensions, Map<String, Object> prope
}
if (!extensions.containsKey(Configurer.class))
{
extensions.put(Configurer.class, new JBossWSNonSpringConfigurer(new BeanCustomizer()));
extensions.put(Configurer.class, new JBossWSConfigurerImpl(new BeanCustomizer()));
}

//Explicitly ask for the ProviderImpl.class.getClassLoader() to be used for getting
Expand Down
Expand Up @@ -30,11 +30,11 @@
* @author alessio.soldano@jboss.com
* @since 05-Oct-2009
*/
public class JBossWSNonSpringConfigurer implements JBossWSConfigurer, BusExtension
public class JBossWSConfigurerImpl implements JBossWSConfigurer, BusExtension
{
private BeanCustomizer customizer;

public JBossWSNonSpringConfigurer(BeanCustomizer customizer)
public JBossWSConfigurerImpl(BeanCustomizer customizer)
{
this.customizer = customizer;
}
Expand Down
Expand Up @@ -43,7 +43,7 @@
import org.jboss.wsf.spi.metadata.webservices.JBossWebservicesMetaData;
import org.jboss.wsf.stack.cxf.Messages;
import org.jboss.wsf.stack.cxf.client.configuration.JBossWSBusFactory;
import org.jboss.wsf.stack.cxf.client.configuration.JBossWSNonSpringConfigurer;
import org.jboss.wsf.stack.cxf.client.configuration.JBossWSConfigurerImpl;
import org.jboss.wsf.stack.cxf.deployment.EndpointImpl;
import org.jboss.wsf.stack.cxf.deployment.WSDLFilePublisher;
import org.jboss.wsf.stack.cxf.metadata.services.DDBeans;
Expand Down Expand Up @@ -184,7 +184,7 @@ public Configurer createServerConfigurer(BindingCustomization customization, WSD
customizer.setBindingCustomization(customization);
customizer.setWsdlPublisher(wsdlPublisher);
customizer.setDeployment(dep);
return new JBossWSNonSpringConfigurer(customizer);
return new JBossWSConfigurerImpl(customizer);
}

}

0 comments on commit b96e039

Please sign in to comment.