Tabnine Logo
EJBClientContext.getInterceptors
Code IndexAdd Tabnine to your IDE (free)

How to use
getInterceptors
method
in
org.jboss.ejb.client.EJBClientContext

Best Java code snippets using org.jboss.ejb.client.EJBClientContext.getInterceptors (Showing top 9 results out of 315)

origin: wildfly/wildfly

<T> EJBSessionCreationInvocationContext createSessionCreationInvocationContext(StatelessEJBLocator<T> statelessLocator, AuthenticationContext authenticationContext) {
  EJBClientContext.InterceptorList interceptorList = getInterceptors(statelessLocator.getViewType());
  return new EJBSessionCreationInvocationContext(statelessLocator, this, authenticationContext, interceptorList);
}
origin: wildfly/wildfly

EJBClientInvocationContext(final EJBInvocationHandler<?> invocationHandler, final EJBClientContext ejbClientContext, final Object invokedProxy, final Object[] parameters, final EJBProxyInformation.ProxyMethodInfo methodInfo, final int allowedRetries, final Supplier<AuthenticationContext> authenticationContextSupplier) {
  super(invocationHandler.getLocator(), ejbClientContext);
  this.invocationHandler = invocationHandler;
  authenticationContext = authenticationContextSupplier != null ? authenticationContextSupplier.get() : AuthenticationContext.captureCurrent();
  this.invokedProxy = invokedProxy;
  this.parameters = parameters;
  this.methodInfo = methodInfo;
  long timeout = invocationHandler.getInvocationTimeout();
  if (timeout == -1) {
    timeout = ejbClientContext.getInvocationTimeout();
  }
  this.timeout = timeout;
  remainingRetries = allowedRetries;
  interceptorList = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
}
origin: wildfly/wildfly

final EJBClientContext.InterceptorList list = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
final EJBClientInterceptorInformation[] chain = list.getInformation();
final EJBReceiverInvocationContext.ResultProducer resultProducer;
origin: org.jboss.eap/wildfly-client-all

<T> EJBSessionCreationInvocationContext createSessionCreationInvocationContext(StatelessEJBLocator<T> statelessLocator, AuthenticationContext authenticationContext) {
  EJBClientContext.InterceptorList interceptorList = getInterceptors(statelessLocator.getViewType());
  return new EJBSessionCreationInvocationContext(statelessLocator, this, authenticationContext, interceptorList);
}
origin: wildfly/jboss-ejb-client

<T> EJBSessionCreationInvocationContext createSessionCreationInvocationContext(StatelessEJBLocator<T> statelessLocator, AuthenticationContext authenticationContext) {
  EJBClientContext.InterceptorList interceptorList = getInterceptors(statelessLocator.getViewType());
  return new EJBSessionCreationInvocationContext(statelessLocator, this, authenticationContext, interceptorList);
}
origin: wildfly/jboss-ejb-client

EJBClientInvocationContext(final EJBInvocationHandler<?> invocationHandler, final EJBClientContext ejbClientContext, final Object invokedProxy, final Object[] parameters, final EJBProxyInformation.ProxyMethodInfo methodInfo, final int allowedRetries, final Supplier<AuthenticationContext> authenticationContextSupplier) {
  super(invocationHandler.getLocator(), ejbClientContext);
  this.invocationHandler = invocationHandler;
  authenticationContext = authenticationContextSupplier != null ? authenticationContextSupplier.get() : AuthenticationContext.captureCurrent();
  this.invokedProxy = invokedProxy;
  this.parameters = parameters;
  this.methodInfo = methodInfo;
  long timeout = invocationHandler.getInvocationTimeout();
  if (timeout == -1) {
    timeout = ejbClientContext.getInvocationTimeout();
  }
  this.timeout = timeout;
  remainingRetries = allowedRetries;
  interceptorList = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
}
origin: org.jboss.eap/wildfly-client-all

EJBClientInvocationContext(final EJBInvocationHandler<?> invocationHandler, final EJBClientContext ejbClientContext, final Object invokedProxy, final Object[] parameters, final EJBProxyInformation.ProxyMethodInfo methodInfo, final int allowedRetries, final Supplier<AuthenticationContext> authenticationContextSupplier) {
  super(invocationHandler.getLocator(), ejbClientContext);
  this.invocationHandler = invocationHandler;
  authenticationContext = authenticationContextSupplier != null ? authenticationContextSupplier.get() : AuthenticationContext.captureCurrent();
  this.invokedProxy = invokedProxy;
  this.parameters = parameters;
  this.methodInfo = methodInfo;
  long timeout = invocationHandler.getInvocationTimeout();
  if (timeout == -1) {
    timeout = ejbClientContext.getInvocationTimeout();
  }
  this.timeout = timeout;
  remainingRetries = allowedRetries;
  interceptorList = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
}
origin: org.jboss.eap/wildfly-client-all

final EJBClientContext.InterceptorList list = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
final EJBClientInterceptorInformation[] chain = list.getInformation();
final EJBReceiverInvocationContext.ResultProducer resultProducer;
origin: wildfly/jboss-ejb-client

final EJBClientContext.InterceptorList list = getClientContext().getInterceptors(getViewClass(), getInvokedMethod());
final EJBClientInterceptorInformation[] chain = list.getInformation();
final EJBReceiverInvocationContext.ResultProducer resultProducer;
org.jboss.ejb.clientEJBClientContextgetInterceptors

Popular methods of EJBClientContext

  • setSelector
  • getContextManager
    Get the context manager.
  • getAttachment
  • <init>
  • calculateMethodInterceptors
  • create
  • createSession
  • createSessionCreationInvocationContext
  • getClassPathInterceptors
  • getClusterNodeSelector
  • getConfiguredConnections
    Get the pre-configured connections for this context. This information may not be used by some transp
  • getConfiguredPerClassInterceptors
  • getConfiguredConnections,
  • getConfiguredPerClassInterceptors,
  • getConfiguredPerMethodInterceptors,
  • getCurrent,
  • getDeploymentNodeSelector,
  • getGlobalInterceptors,
  • getInvocationTimeout,
  • getMaximumConnectedClusterNodes,
  • getTransportProvider

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • findViewById (Activity)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • 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