Tabnine Logo
InterceptorImpl.hasInvalidTargetType
Code IndexAdd Tabnine to your IDE (free)

How to use
hasInvalidTargetType
method
in
org.jboss.weld.bean.InterceptorImpl

Best Java code snippets using org.jboss.weld.bean.InterceptorImpl.hasInvalidTargetType (Showing top 6 results out of 315)

origin: weld/core

private void checkInterceptorBindings() {
  if (interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_CONSTRUCT)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_DESTROY)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_ACTIVATE)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_PASSIVATE)) {
    for (Annotation interceptorBindingType : interceptorBindingTypes) {
      Target target = interceptorBindingType.annotationType().getAnnotation(Target.class);
      if (target == null || hasInvalidTargetType(target.value())) {
        ReflectionLogger.LOG.lifecycleCallbackInterceptorWithInvalidBindingTarget(this, interceptorBindingType.annotationType().getName(),
            target != null ? Arrays.toString(target.value()) : "Target meta-annotation is not present");
      }
    }
  }
}
origin: weld/core

private void checkInterceptorBindings() {
  if (interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_CONSTRUCT)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_DESTROY)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_ACTIVATE)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_PASSIVATE)) {
    for (Annotation interceptorBindingType : interceptorBindingTypes) {
      Target target = interceptorBindingType.annotationType().getAnnotation(Target.class);
      if (target == null || hasInvalidTargetType(target.value())) {
        ReflectionLogger.LOG.lifecycleCallbackInterceptorWithInvalidBindingTarget(this, interceptorBindingType.annotationType().getName(),
            target != null ? Arrays.toString(target.value()) : "Target meta-annotation is not present");
      }
    }
  }
}
origin: org.jboss.weld.servlet/weld-servlet-shaded

private void checkInterceptorBindings() {
  if (interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_CONSTRUCT)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_DESTROY)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_ACTIVATE)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_PASSIVATE)) {
    for (Annotation interceptorBindingType : interceptorBindingTypes) {
      Target target = interceptorBindingType.annotationType().getAnnotation(Target.class);
      if (target == null || hasInvalidTargetType(target.value())) {
        ReflectionLogger.LOG.lifecycleCallbackInterceptorWithInvalidBindingTarget(this, interceptorBindingType.annotationType().getName(),
            target != null ? Arrays.toString(target.value()) : "Target meta-annotation is not present");
      }
    }
  }
}
origin: org.jboss.weld.se/weld-se

private void checkInterceptorBindings() {
  if (interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_CONSTRUCT)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_DESTROY)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_ACTIVATE)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_PASSIVATE)) {
    for (Annotation interceptorBindingType : interceptorBindingTypes) {
      Target target = interceptorBindingType.annotationType().getAnnotation(Target.class);
      if (target == null || hasInvalidTargetType(target.value())) {
        ReflectionLogger.LOG.lifecycleCallbackInterceptorWithInvalidBindingTarget(this, interceptorBindingType.annotationType().getName(),
            target != null ? Arrays.toString(target.value()) : "Target meta-annotation is not present");
      }
    }
  }
}
origin: weld/core

private void checkInterceptorBindings() {
  if (interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_CONSTRUCT)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_DESTROY)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_ACTIVATE)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_PASSIVATE)) {
    for (Annotation interceptorBindingType : interceptorBindingTypes) {
      Target target = interceptorBindingType.annotationType().getAnnotation(Target.class);
      if (target == null || hasInvalidTargetType(target.value())) {
        ReflectionLogger.LOG.lifecycleCallbackInterceptorWithInvalidBindingTarget(this, interceptorBindingType.annotationType().getName(),
            target != null ? Arrays.toString(target.value()) : "Target meta-annotation is not present");
      }
    }
  }
}
origin: org.jboss.weld.se/weld-se-shaded

private void checkInterceptorBindings() {
  if (interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_CONSTRUCT)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_DESTROY)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.POST_ACTIVATE)
      || interceptorMetadata.isEligible(org.jboss.weld.interceptor.spi.model.InterceptionType.PRE_PASSIVATE)) {
    for (Annotation interceptorBindingType : interceptorBindingTypes) {
      Target target = interceptorBindingType.annotationType().getAnnotation(Target.class);
      if (target == null || hasInvalidTargetType(target.value())) {
        ReflectionLogger.LOG.lifecycleCallbackInterceptorWithInvalidBindingTarget(this, interceptorBindingType.annotationType().getName(),
            target != null ? Arrays.toString(target.value()) : "Target meta-annotation is not present");
      }
    }
  }
}
org.jboss.weld.beanInterceptorImplhasInvalidTargetType

Popular methods of InterceptorImpl

  • <init>
  • checkInterceptorBindings
  • cleanupAfterBoot
  • getBeanClass
  • getBeanManager
  • getEnhancedAnnotated
  • getInterceptorBindings
  • getInterceptorMetadata
  • getStereotypes
  • initInterceptorMetadata
  • initialize
  • isSerializable
  • initialize,
  • isSerializable,
  • of,
  • getType

Popular in Java

  • Start an intent from android
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • String (java.lang)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Table (org.hibernate.mapping)
    A relational table
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Best IntelliJ 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