| |
|
| java.lang.Object org.ow2.easybeans.deployment.annotations.helper.bean.BusinessMethodResolver
BusinessMethodResolver | final public class BusinessMethodResolver (Code) | | This class resolves the business method for bean class by looking at the
interfaces.
author: Florent Benoit |
Field Summary | |
final public static String | CLASS_INIT Name of the method used in constructor. | final public static String | CONST_INIT Ignore constructor "method" of interfaces. |
Method Summary | |
public static void | resolve(ClassAnnotationMetadata classAnnotationMetadata) Found all business methods of a bean.
A business method is a method from one of the local or remote interfaces. |
CLASS_INIT | final public static String CLASS_INIT(Code) | | Name of the method used in constructor.
This has to be ignored as this is never a business interface
|
CONST_INIT | final public static String CONST_INIT(Code) | | Ignore constructor "method" of interfaces.
Not a business interface.
|
resolve | public static void resolve(ClassAnnotationMetadata classAnnotationMetadata)(Code) | | Found all business methods of a bean.
A business method is a method from one of the local or remote interfaces.
Parameters: classAnnotationMetadata - class to analyze |
|
|
|