Tabnine Logo
BeanManagerLogger.duplicateActiveContexts
Code IndexAdd Tabnine to your IDE (free)

How to use
duplicateActiveContexts
method
in
org.jboss.weld.logging.BeanManagerLogger

Best Java code snippets using org.jboss.weld.logging.BeanManagerLogger.duplicateActiveContexts (Showing top 6 results out of 315)

origin: weld/core

private Context internalGetContext(Class<? extends Annotation> scopeType) {
  Context activeContext = null;
  final List<Context> ctx = contexts.get(scopeType);
  if (ctx == null) {
    return null;
  }
  for (Context context : ctx) {
    if (context.isActive()) {
      if (activeContext == null) {
        activeContext = context;
      } else {
        throw BeanManagerLogger.LOG.duplicateActiveContexts(scopeType.getName());
      }
    }
  }
  return activeContext;
}
origin: weld/core

private Context internalGetContext(Class<? extends Annotation> scopeType) {
  Context activeContext = null;
  final List<Context> ctx = contexts.get(scopeType);
  if (ctx == null) {
    return null;
  }
  for (Context context : ctx) {
    if (context.isActive()) {
      if (activeContext == null) {
        activeContext = context;
      } else {
        throw BeanManagerLogger.LOG.duplicateActiveContexts(scopeType.getName());
      }
    }
  }
  return activeContext;
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

private Context internalGetContext(Class<? extends Annotation> scopeType) {
  Context activeContext = null;
  final List<Context> ctx = contexts.get(scopeType);
  if (ctx == null) {
    return null;
  }
  for (Context context : ctx) {
    if (context.isActive()) {
      if (activeContext == null) {
        activeContext = context;
      } else {
        throw BeanManagerLogger.LOG.duplicateActiveContexts(scopeType.getName());
      }
    }
  }
  return activeContext;
}
origin: org.jboss.weld.se/weld-se

private Context internalGetContext(Class<? extends Annotation> scopeType) {
  Context activeContext = null;
  final List<Context> ctx = contexts.get(scopeType);
  if (ctx == null) {
    return null;
  }
  for (Context context : ctx) {
    if (context.isActive()) {
      if (activeContext == null) {
        activeContext = context;
      } else {
        throw BeanManagerLogger.LOG.duplicateActiveContexts(scopeType.getName());
      }
    }
  }
  return activeContext;
}
origin: weld/core

private Context internalGetContext(Class<? extends Annotation> scopeType) {
  Context activeContext = null;
  final List<Context> ctx = contexts.get(scopeType);
  if (ctx == null) {
    return null;
  }
  for (Context context : ctx) {
    if (context.isActive()) {
      if (activeContext == null) {
        activeContext = context;
      } else {
        throw BeanManagerLogger.LOG.duplicateActiveContexts(scopeType.getName());
      }
    }
  }
  return activeContext;
}
origin: org.jboss.weld.se/weld-se-shaded

private Context internalGetContext(Class<? extends Annotation> scopeType) {
  Context activeContext = null;
  final List<Context> ctx = contexts.get(scopeType);
  if (ctx == null) {
    return null;
  }
  for (Context context : ctx) {
    if (context.isActive()) {
      if (activeContext == null) {
        activeContext = context;
      } else {
        throw BeanManagerLogger.LOG.duplicateActiveContexts(scopeType.getName());
      }
    }
  }
  return activeContext;
}
org.jboss.weld.loggingBeanManagerLoggerduplicateActiveContexts

Popular methods of BeanManagerLogger

  • beanManagerNotAvailable
  • injectionPointHasAmbiguousDependencies
  • injectionPointHasUnsatisfiedDependencies
  • ambiguousBeanManager
  • ambiguousBeansForDependency
  • cannotCreateBeanAttributesForIncorrectAnnotatedMember
  • cannotLocateBeanManager
  • contextNotActive
  • duplicateInterceptorBinding
  • duplicateQualifiers
  • interceptorBindingsEmpty
  • interceptorResolutionWithNonbindingType
  • interceptorBindingsEmpty,
  • interceptorResolutionWithNonbindingType,
  • invalidQualifier,
  • methodNotAvailableAfterShutdown,
  • methodNotAvailableDuringInitialization,
  • noDecoratorTypes,
  • noInstanceOfExtension,
  • notInterceptorBindingType,
  • notStereotype

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSupportFragmentManager (FragmentActivity)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Runner (org.openjdk.jmh.runner)
  • 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