com.softwareag.centrasite.appl.framework.beans.annotations
Annotation Type Bean


@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface Bean

Annotation, for binding an interface of a bean to its implementation.


Optional Element Summary
 java.lang.Class<?> implementation
          Returns the class, which is the implementation of this bean interface.
 java.lang.String implementationClass
          Returns the fully qualified class name, which is the implementation of this bean interface.
 

implementation

public abstract java.lang.Class<?> implementation
Returns the class, which is the implementation of this bean interface.

Default:
java.lang.Object.class

implementationClass

public abstract java.lang.String implementationClass
Returns the fully qualified class name, which is the implementation of this bean interface.

Default:
""