Codota Logo
JBossWSBusFactory.possiblySetDefaultBus
Code IndexAdd Codota to your IDE (free)

How to use
possiblySetDefaultBus
method
in
org.jboss.wsf.stack.cxf.client.configuration.JBossWSBusFactory

Best Java code snippets using org.jboss.wsf.stack.cxf.client.configuration.JBossWSBusFactory.possiblySetDefaultBus (Showing top 1 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: org.jboss.ws.cxf/jbossws-cxf-client

@Override
public Bus createBus(Map<Class<?>, Object> extensions, Map<String, Object> properties) {
 if (extensions == null)
 {
   extensions = new HashMap<Class<?>, Object>();
 }
 if (!extensions.containsKey(Configurer.class))
 {
   extensions.put(Configurer.class, new JBossWSConfigurerImpl(new BeanCustomizer()));
 }
 
 //Explicitly ask for the ProviderImpl.class.getClassLoader() to be used for getting
 //cxf bus extensions (as that classloader is the jaxws-client module one which 'sees' all
 //extensions, unless different dependencies are explicitly set)
 ExtensionManagerBus bus = new ExtensionManagerBus(extensions, properties, ProviderImpl.class.getClassLoader());
 
 possiblySetDefaultBus(bus);
 initializeBus(bus);
 bus.initialize();
 
 DefaultHTTPConduitFactoryWrapper.install(bus);
 return bus;
}
org.jboss.wsf.stack.cxf.client.configurationJBossWSBusFactorypossiblySetDefaultBus

Popular methods of JBossWSBusFactory

  • <init>
  • createBus
  • getDefaultBus
    Gets (and internally sets) the default bus after having set the thread context class loader to the p
  • clearDefaultBusForAnyClassLoader
    Removes a bus from being the default bus for any classloader
  • getClassLoaderDefaultBus
    Gets the default bus for the given classloader; if a new Bus is needed, the creation is delegated to
  • initializeBus
  • newInstance

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • getSharedPreferences (Context)
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • BitSet (java.util)
    This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now