congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
MessageDestinationResolver
Code IndexAdd Tabnine to your IDE (free)

How to use
MessageDestinationResolver
in
org.jboss.ejb3.enc

Best Java code snippets using org.jboss.ejb3.enc.MessageDestinationResolver (Showing top 3 results out of 315)

origin: org.jboss.jbossas/jboss-as-ejb3

public String resolveMessageDestination(String link)
{
 //      // FIXME: this is a copy of DeploymentEjbResolver & Ejb3Deployment.resolveMessageDestination
 //      int hashIndex = link.indexOf('#');
 //      if (hashIndex != -1)
 //      {
 //         if (deploymentScope == null)
 //         {
 //            log.warn("ejb link '" + link + "' is relative, but no deployment scope found");
 //            return null;
 //         }
 //         String relativePath = link.substring(0, hashIndex);
 //         Ejb3Deployment dep = deploymentScope.findRelativeDeployment(relativePath);
 //         if (dep == null)
 //         {
 //            log.warn("can't find a deployment for path '" + relativePath + "' of ejb link '" + link + "'");
 //            return null;
 //         }
 //         String name = link.substring(hashIndex + 1);
 //         // call resolve, because get is private (and should stay that way)
 //         return dep.resolveMessageDestination(name);
 //      }
 //      return getMessageDestination(link);
 return messageDestinationResolver.resolveMessageDestination(link);
}
origin: org.jboss.ejb3/jboss-ejb3-core

  return dep.resolveMessageDestination(name);
String jndiName = getMessageDestinationJNDIName(link);
if(jndiName != null)
  return jndiName;
origin: org.jboss.jbossas/jboss-as-ejb3

messageDestinationResolver = new MessageDestinationResolver(deploymentScope, xml.getMessageDestinations());
org.jboss.ejb3.encMessageDestinationResolver

Javadoc

Find a message destination link within any module of this JavaEE application deployment.

Most used methods

  • <init>
  • getMessageDestinationJNDIName
  • resolveMessageDestination
    Resolve the message destination link name and return the matching jndi name.

Popular in Java

  • Running tasks concurrently on multiple threads
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getResourceAsStream (ClassLoader)
  • getSupportFragmentManager (FragmentActivity)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top plugins for WebStorm
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