congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
AutoConfig.resolveDestinationLinks
Code IndexAdd Tabnine to your IDE (free)

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

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

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.configAutoConfigresolveDestinationLinks

Javadoc

Set resource id in all message-destination-refs and MDBs that are using message destination links.

Popular methods of AutoConfig

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

Popular in Java

  • Making http requests using okhttp
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • startActivity (Activity)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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