Tabnine Logo
LocalHomeBinding.jndiBinding
Code IndexAdd Tabnine to your IDE (free)

How to use
jndiBinding
method
in
org.jboss.ejb3.annotation.LocalHomeBinding

Best Java code snippets using org.jboss.ejb3.annotation.LocalHomeBinding.jndiBinding (Showing top 3 results out of 315)

origin: org.jboss.ws/jbossws-jboss510-metadata

public void process(JBossSessionBeanMetaData metaData, Class<?> type)
{
 LocalHomeBinding annotation = finder.getAnnotation(type, LocalHomeBinding.class);
 if(annotation == null)
   return;
 
 if(annotation.jndiBinding().length() > 1)
   metaData.setLocalHomeJndiName(annotation.jndiBinding());
}
origin: org.jboss.ejb3/jboss-ejb3-core

public static String getLocalHomeJndiName(EJBContainer container)
{
 // Use explicitly-specified binding, if defined
 LocalHomeBinding binding = container.getAnnotation(LocalHomeBinding.class);
 if (binding != null)
   return binding.jndiBinding();
 // Use Default JNDI Binding Policy
 JBossSessionBeanMetaData smd = (JBossSessionBeanMetaData)container.getXml();
 return smd.getLocalHomeJndiName();
}
origin: org.jboss.ejb3/jboss-ejb3-core

return binding.jndiBinding();
org.jboss.ejb3.annotationLocalHomeBindingjndiBinding

Popular methods of LocalHomeBinding

    Popular in Java

    • Making http post requests using okhttp
    • getOriginalFilename (MultipartFile)
      Return the original filename in the client's filesystem.This may contain path information depending
    • onRequestPermissionsResult (Fragment)
    • compareTo (BigDecimal)
    • VirtualMachine (com.sun.tools.attach)
      A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
    • PrintWriter (java.io)
      Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
    • KeyStore (java.security)
      KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
    • SimpleDateFormat (java.text)
      Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
    • Executors (java.util.concurrent)
      Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
    • Reflections (org.reflections)
      Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you 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