Codota Logo
AutoConfig.deploy
Code IndexAdd Codota to your IDE (free)

How to use
deploy
method
in
org.apache.openejb.config.AutoConfig

Best Java code snippets using org.apache.openejb.config.AutoConfig.deploy (Showing top 3 results out of 315)

  • Common ways to obtain AutoConfig
private void myMethod () {
AutoConfig a =
  • Codota IconConfigurationFactory configFactory;new AutoConfig(configFactory)
  • Smart code suggestions by Codota
}
origin: org.apache.geronimo.ext.openejb/openejb-core

public synchronized AppModule deploy(AppModule appModule) throws OpenEJBException {
  AppResources appResources = new AppResources(appModule);
  for (EjbModule ejbModule : appModule.getEjbModules()) {
    processActivationConfig(ejbModule);
  }
  resolveDestinationLinks(appModule);
  resolvePersistenceRefs(appModule);
  for (EjbModule ejbModule : appModule.getEjbModules()) {
    deploy(ejbModule, appResources);
  }
  for (ClientModule clientModule : appModule.getClientModules()) {
    deploy(clientModule, appResources);
  }
  for (ConnectorModule connectorModule : appModule.getResourceModules()) {
    deploy(connectorModule);
  }
  for (WebModule webModule : appModule.getWebModules()) {
    deploy(webModule, appResources);
  }
  for (PersistenceModule persistenceModule : appModule.getPersistenceModules()) {
    deploy(appModule, persistenceModule);
  }
  return appModule;
}
origin: org.apache.openejb/openejb-core

@Override
public synchronized AppModule deploy(final AppModule appModule) throws OpenEJBException {
  final AppResources appResources = new AppResources(appModule);
  appResources.dump();
  processApplicationResources(appModule);
  for (final EjbModule ejbModule : appModule.getEjbModules()) {
    processActivationConfig(ejbModule);
  }
  resolveDestinationLinks(appModule);
  resolvePersistenceRefs(appModule);
  for (final EjbModule ejbModule : appModule.getEjbModules()) {
    deploy(ejbModule, appResources);
  }
  for (final ClientModule clientModule : appModule.getClientModules()) {
    deploy(clientModule, appResources);
  }
  for (final WebModule webModule : appModule.getWebModules()) {
    deploy(webModule, appResources);
  }
  for (final PersistenceModule persistenceModule : appModule.getPersistenceModules()) {
    deploy(appModule, persistenceModule);
  }
  // Note that there is nothing to process for resource modules.
  // We dont need to loop over "appModule.getConnectorModules()".
  return appModule;
}
origin: org.apache.tomee/openejb-core

@Override
public synchronized AppModule deploy(final AppModule appModule) throws OpenEJBException {
  final List<ContainerInfo> containerInfos = ContainerUtils.getContainerInfos(appModule, configFactory);
  final AppResources appResources = new AppResources(appModule, containerInfos);
  appResources.dump();
  processApplicationResources(appModule);
  for (final EjbModule ejbModule : appModule.getEjbModules()) {
    processActivationConfig(ejbModule);
  }
  resolveDestinationLinks(appModule);
  resolvePersistenceRefs(appModule);
  for (final EjbModule ejbModule : appModule.getEjbModules()) {
    deploy(ejbModule, appResources);
  }
  for (final ClientModule clientModule : appModule.getClientModules()) {
    deploy(clientModule, appResources);
  }
  for (final WebModule webModule : appModule.getWebModules()) {
    deploy(webModule, appResources);
  }
  for (final PersistenceModule persistenceModule : appModule.getPersistenceModules()) {
    deploy(appModule, persistenceModule);
  }
  // Note that there is nothing to process for resource modules.
  // We dont need to loop over "appModule.getConnectorModules()".
  return appModule;
}
org.apache.openejb.configAutoConfigdeploy

Popular methods of AutoConfig

  • <init>
  • autoCreateContainers
  • autoCreateResources
  • findResourceId
  • autoCreateResource
  • checkUnitDataSourceRefs
  • copy
  • createContainer
  • findResourceProviderId
  • firstMatching
  • getResourceEnvId
  • getResourceId
  • getResourceEnvId,
  • getResourceId,
  • getResourceIds,
  • getType,
  • getUsableContainer,
  • installResource,
  • isJms,
  • logAutoCreateResource,
  • normalizeResourceId

Popular in Java

  • Parsing JSON documents to java classes using gson
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
  • notifyDataSetChanged (ArrayAdapter)
  • Color (java.awt)
    The Color class is used encapsulate colors in the default sRGB color space or colors in arbitrary co
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • PrintStream (java.io)
    A PrintStream adds functionality to another output stream, namely the ability to print representatio
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Dictionary (java.util)
    The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
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