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

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

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

origin: weld/core

/**
 * Resolves a list of interceptors based on interception type and interceptor bindings. Transitive interceptor bindings of the interceptor bindings passed
 * as a parameter are considered in the resolution process.
 *
 * @param type The interception type to resolve
 * @param interceptorBindings The binding types to match
 * @return A list of matching interceptors
 * @see javax.enterprise.inject.spi.BeanManager#resolveInterceptors(javax.enterprise.inject.spi.InterceptionType, java.lang.annotation.Annotation[])
 */
@Override
public List<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings) {
  if (interceptorBindings.length == 0) {
    throw BeanManagerLogger.LOG.interceptorBindingsEmpty();
  }
  for (Annotation annotation : interceptorBindings) {
    if (!isInterceptorBinding(annotation.annotationType())) {
      throw BeanManagerLogger.LOG.notInterceptorBindingType(annotation);
    }
  }
  Set<Annotation> flattenedInterceptorBindings = Interceptors.flattenInterceptorBindings(null, this, Arrays.asList(interceptorBindings), true, true);
  return resolveInterceptors(type, flattenedInterceptorBindings);
}
origin: weld/core

/**
 * Resolves a list of interceptors based on interception type and interceptor bindings. Transitive interceptor bindings of the interceptor bindings passed
 * as a parameter are considered in the resolution process.
 *
 * @param type The interception type to resolve
 * @param interceptorBindings The binding types to match
 * @return A list of matching interceptors
 * @see javax.enterprise.inject.spi.BeanManager#resolveInterceptors(javax.enterprise.inject.spi.InterceptionType, java.lang.annotation.Annotation[])
 */
@Override
public List<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings) {
  if (interceptorBindings.length == 0) {
    throw BeanManagerLogger.LOG.interceptorBindingsEmpty();
  }
  for (Annotation annotation : interceptorBindings) {
    if (!isInterceptorBinding(annotation.annotationType())) {
      throw BeanManagerLogger.LOG.notInterceptorBindingType(annotation);
    }
  }
  Set<Annotation> flattenedInterceptorBindings = Interceptors.flattenInterceptorBindings(null, this, Arrays.asList(interceptorBindings), true, true);
  return resolveInterceptors(type, flattenedInterceptorBindings);
}
origin: weld/core

/**
 * Resolves a list of interceptors based on interception type and interceptor bindings. Transitive interceptor bindings of the interceptor bindings passed
 * as a parameter are considered in the resolution process.
 *
 * @param type The interception type to resolve
 * @param interceptorBindings The binding types to match
 * @return A list of matching interceptors
 * @see javax.enterprise.inject.spi.BeanManager#resolveInterceptors(javax.enterprise.inject.spi.InterceptionType, java.lang.annotation.Annotation[])
 */
@Override
public List<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings) {
  if (interceptorBindings.length == 0) {
    throw BeanManagerLogger.LOG.interceptorBindingsEmpty();
  }
  for (Annotation annotation : interceptorBindings) {
    if (!isInterceptorBinding(annotation.annotationType())) {
      throw BeanManagerLogger.LOG.notInterceptorBindingType(annotation);
    }
  }
  Set<Annotation> flattenedInterceptorBindings = Interceptors.flattenInterceptorBindings(null, this, Arrays.asList(interceptorBindings), true, true);
  return resolveInterceptors(type, flattenedInterceptorBindings);
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

/**
 * Resolves a list of interceptors based on interception type and interceptor bindings. Transitive interceptor bindings of the interceptor bindings passed
 * as a parameter are considered in the resolution process.
 *
 * @param type The interception type to resolve
 * @param interceptorBindings The binding types to match
 * @return A list of matching interceptors
 * @see javax.enterprise.inject.spi.BeanManager#resolveInterceptors(javax.enterprise.inject.spi.InterceptionType, java.lang.annotation.Annotation[])
 */
@Override
public List<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings) {
  if (interceptorBindings.length == 0) {
    throw BeanManagerLogger.LOG.interceptorBindingsEmpty();
  }
  for (Annotation annotation : interceptorBindings) {
    if (!isInterceptorBinding(annotation.annotationType())) {
      throw BeanManagerLogger.LOG.notInterceptorBindingType(annotation);
    }
  }
  Set<Annotation> flattenedInterceptorBindings = Interceptors.flattenInterceptorBindings(null, this, Arrays.asList(interceptorBindings), true, true);
  return resolveInterceptors(type, flattenedInterceptorBindings);
}
origin: org.jboss.weld.se/weld-se-shaded

/**
 * Resolves a list of interceptors based on interception type and interceptor bindings. Transitive interceptor bindings of the interceptor bindings passed
 * as a parameter are considered in the resolution process.
 *
 * @param type The interception type to resolve
 * @param interceptorBindings The binding types to match
 * @return A list of matching interceptors
 * @see javax.enterprise.inject.spi.BeanManager#resolveInterceptors(javax.enterprise.inject.spi.InterceptionType, java.lang.annotation.Annotation[])
 */
@Override
public List<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings) {
  if (interceptorBindings.length == 0) {
    throw BeanManagerLogger.LOG.interceptorBindingsEmpty();
  }
  for (Annotation annotation : interceptorBindings) {
    if (!isInterceptorBinding(annotation.annotationType())) {
      throw BeanManagerLogger.LOG.notInterceptorBindingType(annotation);
    }
  }
  Set<Annotation> flattenedInterceptorBindings = Interceptors.flattenInterceptorBindings(null, this, Arrays.asList(interceptorBindings), true, true);
  return resolveInterceptors(type, flattenedInterceptorBindings);
}
origin: org.jboss.weld.se/weld-se

/**
 * Resolves a list of interceptors based on interception type and interceptor
 * bindings. Transitive interceptor bindings of the interceptor bindings passed
 * as a parameter are considered in the resolution process.
 *
 * @param type                The interception type to resolve
 * @param interceptorBindings The binding types to match
 * @return A list of matching interceptors
 * @see javax.enterprise.inject.spi.BeanManager#resolveInterceptors(javax.enterprise.inject.spi.InterceptionType,
 *      java.lang.annotation.Annotation[])
 */
@Override
public List<Interceptor<?>> resolveInterceptors(InterceptionType type, Annotation... interceptorBindings) {
  if (interceptorBindings.length == 0) {
    throw BeanManagerLogger.LOG.interceptorBindingsEmpty();
  }
  for (Annotation annotation : interceptorBindings) {
    if (!isInterceptorBinding(annotation.annotationType())) {
      throw BeanManagerLogger.LOG.notInterceptorBindingType(annotation);
    }
  }
  Set<Annotation> flattenedInterceptorBindings = Interceptors.flattenInterceptorBindings(this, Arrays.asList(interceptorBindings), true, true);
  return resolveInterceptors(type, flattenedInterceptorBindings);
}
origin: weld/core

@Override
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
  InterceptorBindingModel<? extends Annotation> model = getServices().get(MetaAnnotationStore.class).getInterceptorBindingModel(bindingType);
  if (model.isValid()) {
    return model.getMetaAnnotations();
  } else {
    throw BeanManagerLogger.LOG.notInterceptorBindingType(bindingType);
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

@Override
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
  InterceptorBindingModel<? extends Annotation> model = getServices().get(MetaAnnotationStore.class).getInterceptorBindingModel(bindingType);
  if (model.isValid()) {
    return model.getMetaAnnotations();
  } else {
    throw BeanManagerLogger.LOG.notInterceptorBindingType(bindingType);
  }
}
origin: org.jboss.weld.se/weld-se

@Override
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
  InterceptorBindingModel<? extends Annotation> model = getServices().get(MetaAnnotationStore.class).getInterceptorBindingModel(bindingType);
  if (model.isValid()) {
    return model.getMetaAnnotations();
  } else {
    throw BeanManagerLogger.LOG.notInterceptorBindingType(bindingType);
  }
}
origin: weld/core

@Override
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
  InterceptorBindingModel<? extends Annotation> model = getServices().get(MetaAnnotationStore.class).getInterceptorBindingModel(bindingType);
  if (model.isValid()) {
    return model.getMetaAnnotations();
  } else {
    throw BeanManagerLogger.LOG.notInterceptorBindingType(bindingType);
  }
}
origin: weld/core

@Override
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
  InterceptorBindingModel<? extends Annotation> model = getServices().get(MetaAnnotationStore.class).getInterceptorBindingModel(bindingType);
  if (model.isValid()) {
    return model.getMetaAnnotations();
  } else {
    throw BeanManagerLogger.LOG.notInterceptorBindingType(bindingType);
  }
}
origin: org.jboss.weld.se/weld-se-shaded

@Override
public Set<Annotation> getInterceptorBindingDefinition(Class<? extends Annotation> bindingType) {
  InterceptorBindingModel<? extends Annotation> model = getServices().get(MetaAnnotationStore.class).getInterceptorBindingModel(bindingType);
  if (model.isValid()) {
    return model.getMetaAnnotations();
  } else {
    throw BeanManagerLogger.LOG.notInterceptorBindingType(bindingType);
  }
}
org.jboss.weld.loggingBeanManagerLoggernotInterceptorBindingType

Popular methods of BeanManagerLogger

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

Popular in Java

  • Making http requests using okhttp
  • compareTo (BigDecimal)
  • getContentResolver (Context)
  • getSupportFragmentManager (FragmentActivity)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • JTable (javax.swing)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Github Copilot alternatives
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