Interface BeanProperty
-
@ConsumerType public interface BeanPropertyMetadata for a property to be injected into a bean. The properties of a bean are obtained fromBeanMetadata.getProperties(). This is specified by thepropertyelements of a bean. Properties are defined according to the Java Beans conventions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Return the name of the property to be injected.MetadatagetValue()Return the Metadata for the value to be injected into a bean.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Return the name of the property to be injected. The name follows Java Beans conventions. This is specified by thenameattribute.- Returns:
- The name of the property to be injected.
-
getValue
Metadata getValue()
Return the Metadata for the value to be injected into a bean. This is specified by thevalueattribute or in inlined text.- Returns:
- The Metadata for the value to be injected into a bean.
-
-