@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface Bean
| Modifier and Type | Required Element and Description |
|---|---|
java.lang.String |
id
id, activation, dependsOn comes from Tcomponent
the id property for the bean
should this be auto generated if none is specified?
|
| Modifier and Type | Optional Element and Description |
|---|---|
java.lang.String |
activation
the activation property for the bean
This can either be "eager" or "lazy".
|
Arg[] |
args
arguments for the bean constructor or the factory method of the bean
|
java.lang.String[] |
dependsOn
the components that the bean depends on
|
java.lang.String |
description
the description property for the bean
|
java.lang.String |
factoryMethod
the factory method in the factoryRef referred factory component
|
java.lang.String |
factoryRef
the reference to the factory component on which to invoke the
factory method for the bean.
|
java.lang.String |
scope
the scope property for the bean.
|
public abstract java.lang.String id
public abstract java.lang.String activation
public abstract java.lang.String[] dependsOn
public abstract java.lang.String description
public abstract java.lang.String scope
public abstract java.lang.String factoryRef
public abstract java.lang.String factoryMethod
public abstract Arg[] args
Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.