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

How to use
RemoteBinding
in
org.jboss.ejb3.annotation

Best Java code snippets using org.jboss.ejb3.annotation.RemoteBinding (Showing top 20 results out of 315)

origin: com.glon/sandra-service

/**
 * @author sletellier
 */
@Remote
@RemoteBinding(jndiBinding="ServiceSynchNumberImpl/remote")
public interface ServiceSynchNumber {

  public Long getNextSynchroNumber() throws TopiaException;

  Long getCurrentSynchroNumber() throws TopiaException;
}

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

protected RemoteBindingMetaData createBindingMetaData(Class<?> type, RemoteBinding annotation)
{
 RemoteBindingMetaData remote = new RemoteBindingMetaData();
 remote.setJndiName(annotation.jndiBinding());
 remote.setClientBindUrl(annotation.clientBindUrl());
 remote.setInterceptorStack(annotation.interceptorStack());
 remote.setProxyFactory(annotation.factory());
 remote.setInvokerName(annotation.invokerName());
 Descriptions descriptions = ProcessorUtils.getDescription(" @RemoteBinding for class " + type.getSimpleName());
 remote.setDescriptions(descriptions);
 return remote;
}
origin: org.jboss.ejb3/jboss-ejb3-core

private RemoteBinding initializeRemoteBinding(RemoteBinding binding)
{
 if(binding.jndiBinding().length() == 0)
 {
   return new RemoteBindingImpl(ProxyFactoryHelper.getDefaultRemoteBusinessJndiName(container), binding
      .interceptorStack(), binding.clientBindUrl(), "");
 }
 return binding;
}
origin: org.jboss.ejb3/jboss-ejb3-core

public static String getRemoteBusinessJndiName(EJBContainer container, RemoteBinding binding, boolean conflictCheck)
{
 // Initialize
 String jndiName = null;
 // If binding is not defined
 if (binding == null || binding.jndiBinding() == null || binding.jndiBinding().trim().equals(""))
 {
   // Use the default
   jndiName = getDefaultRemoteBusinessJndiName(container);
   // If we should check for a naming conflict
   if (conflictCheck)
   {
    // Check
    ProxyFactoryHelper.checkForJndiNamingConflict(container);
   }
 }
 // Binding is explicitly-defined
 else
 {
   // use it
   jndiName = binding.jndiBinding();
 }
 // Return
 return jndiName;
}
origin: org.jboss.ejb3/jboss-ejb3-core

protected boolean hasJNDIBinding(String jndiName)
{
 assert jndiName != null : "jndiName is null";
 
 if(localBinding != null)
 {
   if(localBinding.jndiBinding().equals(jndiName))
    return true;
 }
 
 if(remoteBindings != null)
 {
   for(RemoteBinding binding : remoteBindings.value())
   {
    if(binding.jndiBinding().equals(jndiName))
      return true;
   }
 }
 
 return false;
}
origin: glon/sandra-service

/**
 * @author sletellier
 */
@Remote
@RemoteBinding(jndiBinding="ServiceSynchNumberImpl/remote")
public interface ServiceSynchNumber {

  public Long getNextSynchroNumber() throws TopiaException;

  Long getCurrentSynchroNumber() throws TopiaException;
}

origin: org.jboss.ejb3/jboss-ejb3-core

protected SessionProxyFactory getProxyFactory(RemoteBinding binding)
{
 assert binding!=null : RemoteBinding.class.getSimpleName() + " must be specified";
 
 // Get the Registry name
 String proxyFactoryRegistryBindName = this.getJndiRegistrar().getProxyFactoryRegistryKey(binding.jndiBinding(), this.getMetaData(), true);
 
 // Return
 return this.getProxyFactory(proxyFactoryRegistryBindName);
}
origin: com.glon/sandra-service

/**
 * @author letellier
 */
@Remote
@RemoteBinding(jndiBinding="InjectorIBUImpl/remote")
public interface InjectorIBU {
  public void injectIBU(String content) throws Exception;

  public void injectLabels(String content) throws Exception;

  public void injectUsines(String content) throws Exception;

  public void injectCamions(String content) throws Exception;

  public void injectChauffeurs(String content) throws Exception;

  public void injectTransporteurs(String content) throws Exception;

  public void injectAutorisations(String content) throws Exception;

  public void injectUsers(String content) throws Exception;

  public void injectEvents(String content) throws Exception;

  public void injectEleveurGPS(String content) throws Exception;
}

origin: org.jboss.ejb3/jboss-ejb3-core

return bindings.value()[0].jndiBinding();
return binding.jndiBinding();
origin: glon/sandra-service

/**
 * @author letellier
 */
@Remote
@RemoteBinding(jndiBinding="InjectorIBUImpl/remote")
public interface InjectorIBU {
  public void injectIBU(String content) throws Exception;

  public void injectLabels(String content) throws Exception;

  public void injectUsines(String content) throws Exception;

  public void injectCamions(String content) throws Exception;

  public void injectChauffeurs(String content) throws Exception;

  public void injectTransporteurs(String content) throws Exception;

  public void injectAutorisations(String content) throws Exception;

  public void injectUsers(String content) throws Exception;

  public void injectEvents(String content) throws Exception;

  public void injectEleveurGPS(String content) throws Exception;
}

origin: glon/sandra-service

@RemoteBinding(jndiBinding="ServiceNotifierImpl/remote")
public interface ServiceNotifier {
origin: com.glon/sandra-service

@RemoteBinding(jndiBinding="ServiceSuiviImpl/remote")
public interface ServiceSuivi {
origin: com.glon/sandra-service

@RemoteBinding(jndiBinding="ServiceScheduleImpl/remote")
public interface ServiceSchedule {
origin: com.glon/sandra-service

@RemoteBinding(jndiBinding="ServiceNotifierImpl/remote")
public interface ServiceNotifier {
origin: glon/sandra-service

@RemoteBinding(jndiBinding="ServiceScheduleImpl/remote")
public interface ServiceSchedule {
origin: glon/sandra-service

@RemoteBinding(jndiBinding="ServiceSuiviImpl/remote")
public interface ServiceSuivi {
origin: com.glon/sandra-service

@RemoteBinding(jndiBinding="ServiceTourImpl/remote")
public interface ServiceTour {
origin: glon/sandra-service

@RemoteBinding(jndiBinding="ServiceTourImpl/remote")
public interface ServiceTour {
origin: com.glon/sandra-service

@RemoteBinding(jndiBinding="ServiceWebImpl/remote")
public interface ServiceWeb {
origin: glon/sandra-service

@RemoteBinding(jndiBinding="ServiceWebImpl/remote")
public interface ServiceWeb {
org.jboss.ejb3.annotationRemoteBinding

Most used methods

  • <init>
  • clientBindUrl
  • interceptorStack
  • jndiBinding
  • factory
  • invokerName

Popular in Java

  • Making http requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setRequestProperty (URLConnection)
  • addToBackStack (FragmentTransaction)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Best plugins for Eclipse
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