Tabnine Logo
HttpRequestContextImpl.getBeanStore
Code IndexAdd Tabnine to your IDE (free)

How to use
getBeanStore
method
in
org.jboss.weld.module.web.context.http.HttpRequestContextImpl

Best Java code snippets using org.jboss.weld.module.web.context.http.HttpRequestContextImpl.getBeanStore (Showing top 6 results out of 315)

origin: weld/core

  public HttpServletRequest getHttpServletRequest() {
    if (getBeanStore() instanceof RequestBeanStore) {
      return Reflections.<RequestBeanStore>cast(getBeanStore()).getRequest();
    }
    return null;
  }
}
origin: weld/core

  public HttpServletRequest getHttpServletRequest() {
    if (getBeanStore() instanceof RequestBeanStore) {
      return Reflections.<RequestBeanStore>cast(getBeanStore()).getRequest();
    }
    return null;
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

  public HttpServletRequest getHttpServletRequest() {
    if (getBeanStore() instanceof RequestBeanStore) {
      return Reflections.<RequestBeanStore>cast(getBeanStore()).getRequest();
    }
    return null;
  }
}
origin: weld/core

public boolean associate(HttpServletRequest request) {
  // At this point the bean store should never be set - see also HttpContextLifecycle#nestedInvocationGuard
  BoundBeanStore beanStore = getBeanStore();
  if (beanStore != null) {
    ContextLogger.LOG.beanStoreLeakDuringAssociation(this.getClass().getName(), request);
    if (ContextLogger.LOG.isDebugEnabled()) {
      ContextLogger.LOG.beanStoreLeakAffectedBeanIdentifiers(this.getClass().getName(), Iterables.toMultiRowString(beanStore));
    }
  }
  // We always associate a new bean store to avoid possible leaks (security threats)
  beanStore = new RequestBeanStore(request, namingScheme);
  setBeanStore(beanStore);
  beanStore.attach();
  return true;
}
origin: weld/core

public boolean associate(HttpServletRequest request) {
  // At this point the bean store should never be set - see also HttpContextLifecycle#nestedInvocationGuard
  BoundBeanStore beanStore = getBeanStore();
  if (beanStore != null) {
    ContextLogger.LOG.beanStoreLeakDuringAssociation(this.getClass().getName(), request);
    if (ContextLogger.LOG.isDebugEnabled()) {
      ContextLogger.LOG.beanStoreLeakAffectedBeanIdentifiers(this.getClass().getName(), Iterables.toMultiRowString(beanStore));
    }
  }
  // We always associate a new bean store to avoid possible leaks (security threats)
  beanStore = new RequestBeanStore(request, namingScheme);
  setBeanStore(beanStore);
  beanStore.attach();
  return true;
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

public boolean associate(HttpServletRequest request) {
  // At this point the bean store should never be set - see also HttpContextLifecycle#nestedInvocationGuard
  BoundBeanStore beanStore = getBeanStore();
  if (beanStore != null) {
    ContextLogger.LOG.beanStoreLeakDuringAssociation(this.getClass().getName(), request);
    if (ContextLogger.LOG.isDebugEnabled()) {
      ContextLogger.LOG.beanStoreLeakAffectedBeanIdentifiers(this.getClass().getName(), Iterables.toMultiRowString(beanStore));
    }
  }
  // We always associate a new bean store to avoid possible leaks (security threats)
  beanStore = new RequestBeanStore(request, namingScheme);
  setBeanStore(beanStore);
  beanStore.attach();
  return true;
}
org.jboss.weld.module.web.context.httpHttpRequestContextImplgetBeanStore

Popular methods of HttpRequestContextImpl

  • <init>
    Constructor
  • getHttpServletRequest
  • setBeanStore

Popular in Java

  • Finding current android device location
  • requestLocationUpdates (LocationManager)
  • getContentResolver (Context)
  • setScale (BigDecimal)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • 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