Class UnqualifiedImpl

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
      private java.lang.Class<? extends java.lang.annotation.Annotation>[] value  
    • Constructor Summary

      Constructors 
      Constructor Description
      UnqualifiedImpl​(java.lang.Class<? extends java.lang.annotation.Annotation>... value)
      Makes a copy of the annotation classes values and initializes this Unqualified annotation with those values
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      java.lang.Class<? extends java.lang.annotation.Annotation>[] value()
      The set of annotations that must not be associated with the service being injected
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.lang.annotation.Annotation

        annotationType, equals, hashCode
    • Field Detail

      • value

        private final java.lang.Class<? extends java.lang.annotation.Annotation>[] value
    • Constructor Detail

      • UnqualifiedImpl

        public UnqualifiedImpl​(java.lang.Class<? extends java.lang.annotation.Annotation>... value)
        Makes a copy of the annotation classes values and initializes this Unqualified annotation with those values
        Parameters:
        value - A list of qualifiers that must NOT be on injection point. A zero-length list indicates that no qualifier must be present on the matching service
    • Method Detail

      • value

        public java.lang.Class<? extends java.lang.annotation.Annotation>[] value()
        The set of annotations that must not be associated with the service being injected
        Returns:
        All annotations that must not be on the injected service. An empty list indicates that NO annotations must be on the injected service
      • toString

        public java.lang.String toString()
        Specified by:
        toString in interface java.lang.annotation.Annotation
        Overrides:
        toString in class java.lang.Object