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

Documentation
	Defines an alias for a bean (which can reside in a different definition
	resource).
			
Properties
This component is not nillable.

Model
<alias
  alias = xsd:string
  name = xsd:string>

</alias>


Attribute Summary
 xsd:stringalias
           The alias name to define for the bean.  
 xsd:stringname
           The name of the bean to define an alias for.  

Attribute Detail

alias

The alias name to define for the bean.

Type:
xsd:string
Use:
required
Form:
unqualified

name

The name of the bean to define an alias for.

Type:
xsd:string
Use:
required
Form:
unqualified

Source
<xsd:element name="alias">
<xsd:complexType>
<xsd:complexContent>
<xsd:restriction base="xsd:anyType">
<xsd:attribute name="name" type="xsd:string" use="required">
</xsd:attribute>
<xsd:attribute name="alias" type="xsd:string" use="required">
</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.