http://www.springframework.org/schema/beans
element idref

Documentation
	The id of another bean in this factory or an external factory
	(parent or included factory).
	While a regular 'value' element could instead be used for the
	same effect, using idref in this case allows validation of local
	bean ids by the XML parser, and name completion by supporting tools.
			
Properties
This component is not nillable.

Model
<idref
  bean = xsd:string
  local = xsd:IDREF>

</idref>


Attribute Summary
 xsd:stringbean
           The name of the referenced bean.  
 xsd:IDREFlocal
          The name of the referenced bean. 

Attribute Detail

bean

The name of the referenced bean.

Type:
xsd:string
Use:
optional
Form:
unqualified

local

The name of the referenced bean. The value must be a bean ID and thus can be checked by the XML parser. This is therefore the preferred technique for referencing beans within the same bean factory XML file.

Type:
xsd:IDREF
Use:
optional
Form:
unqualified

Source
<xsd:element name="idref">
<xsd:complexType>
<xsd:complexContent>
<xsd:restriction base="xsd:anyType">
<xsd:attribute name="bean" type="xsd:string">
</xsd:attribute>
<xsd:attribute name="local" type="xsd:IDREF">
</xsd:attribute>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.