Definition Type: Element
Name: qualifier
Namespace: http://www.springframework.org/schema/beans
Containing Schema: spring-beans-3.1.xsd
Abstract
Documentation:
Bean definitions can provide qualifiers to match against annotations on a field or parameter for fine-grained autowire candidate resolution.
Collapse XSD Schema Diagram:
Drilldown into attribute in schema spring-beans-3_1_xsd Drilldown into value in schema spring-beans-3_1_xsd Drilldown into type in schema spring-beans-3_1_xsdXSD Diagram of qualifier in schema spring-beans-3_1_xsd (Membrane Service Proxy)
Collapse XSD Schema Code:
<xsd:element name="qualifier">
    <xsd:annotation>
        <xsd:documentation><![CDATA[
	Bean definitions can provide qualifiers to match against annotations
	on a field or parameter for fine-grained autowire candidate resolution.
			]]></xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
        <xsd:sequence>
            <xsd:element ref="attribute" minOccurs="0" maxOccurs="unbounded" />
        </xsd:sequence>
        <xsd:attribute name="type" type="xsd:string" default="org.springframework.beans.factory.annotation.Qualifier" />
        <xsd:attribute name="value" type="xsd:string" />
    </xsd:complexType>
</xsd:element>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
attribute beans:attribute 0 unbounded
Collapse Child Attributes:
Name Type Default Value Use
type beans:type org.springframework.beans.factory.annotation.Qualifier (Optional)
value beans:value (Optional)