Do not use BEA Beehive @common annotations

@common Javadoc tags that are found in the migrated JPF files are flagged with this rule. Evaluate each of these annotations to determine how they are used and how to migrate them. You can continue migrating these components to the Apache Beehive framework, or you can migrate some of these BEA Beehive components to a standard Java™ Platform or Enterprise Edition (Java EE) implementation.


BEA Beehive @common:control annotations can be used to reference objects that are defined in a Java Control Extension (JCX) file as a form of object injection.

BEA Beehive @common:operation annotations are used to expose methods to clients in a web service. You can use the @WebMethod annotation to migrate these annotations to Apache Beehive and Java EE as shown in the following example.


/*
 * @common:operation
 */

@WebMethod(action="http://www.myorg.com/registerUser")
public String registerUser(String name) throws Exception