Tabnine Logo
BaseServiceUnitManager.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.servicemix.common.BaseServiceUnitManager
constructor

Best Java code snippets using org.apache.servicemix.common.BaseServiceUnitManager.<init> (Showing top 5 results out of 315)

origin: org.apache.servicemix/servicemix-camel

@Override
public BaseServiceUnitManager createServiceUnitManager() {
  Deployer[] deployers = new Deployer[] {new CamelSpringDeployer(this)};
  return new BaseServiceUnitManager(this, deployers);
}
origin: org.apache.servicemix/servicemix-camel

public BaseServiceUnitManager createServiceUnitManager() {
  CamelSpringDeployer deployer = new OsgiCamelSpringDeployer(this);
  return new BaseServiceUnitManager(this, new Deployer[] {deployer});
}
origin: org.apache.servicemix/servicemix-common

/**
 * Create the service unit manager.
 * Derived classes should override this method and return a
 * BaseServiceUnitManager so that the component is able to
 * handle service unit deployment.
 *
 * The default implementation will create a @{link BaseXBeanDeployer} instance
 * using the value of @{link #getEndpointClasses()} if that method returns a non-null value
 * otherwise it returns null.
 *
 * @return a newly created service unit manager
 */
protected BaseServiceUnitManager createServiceUnitManager() {
  Class[] classes = getEndpointClasses();
  if (classes == null) {
    return null;
  }
  Deployer[] deployers = new Deployer[] { new BaseXBeanDeployer(this, classes) };
  return new BaseServiceUnitManager(this, deployers);
}
origin: org.apache.servicemix/servicemix-jms

public BaseServiceUnitManager createServiceUnitManager() {
  Deployer[] deployers = new Deployer[] {new BaseXBeanDeployer(this, getEndpointClasses()), 
                      new JmsWsdl1Deployer(this)};
  return new BaseServiceUnitManager(this, deployers);
}
origin: org.apache.servicemix/servicemix-http

public BaseServiceUnitManager createServiceUnitManager() {
  Deployer[] deployers = new Deployer[] {new BaseXBeanDeployer(this, getEndpointClasses()),
                      new HttpWsdl1Deployer(this)};
  return new BaseServiceUnitManager(this, deployers);
}
org.apache.servicemix.commonBaseServiceUnitManager<init>

Popular methods of BaseServiceUnitManager

  • createSuccessMessage
  • doDeploy
  • doUndeploy
  • failure
  • getServiceUnit

Popular in Java

  • Parsing JSON documents to java classes using gson
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onCreateOptionsMenu (Activity)
  • setContentView (Activity)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • JPanel (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now