forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AS7-5464 Make sure JAX-RS component integration is only applied to Se…
…ssion beans and Managed Beans
- Loading branch information
1 parent
63bd0fc
commit 47d3d51
Showing
3 changed files
with
37 additions
and
17 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
ee/src/main/java/org/jboss/as/ee/managedbean/component/ManagedBeanComponentDescription.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package org.jboss.as.ee.managedbean.component; | ||
|
||
import org.jboss.as.ee.component.ComponentDescription; | ||
import org.jboss.as.ee.component.EEModuleDescription; | ||
import org.jboss.msc.service.ServiceName; | ||
|
||
/** | ||
* Component descriptor for {@link javax.annotation.ManagedBean} managed beans. | ||
* | ||
* This is only here so that other interested processors can tell if a given component is a managed bean, | ||
* it does not add anything to the component description. | ||
* | ||
* @author Stuart Douglas | ||
*/ | ||
public class ManagedBeanComponentDescription extends ComponentDescription { | ||
/** | ||
* Construct a new instance. | ||
* | ||
* @param componentName the component name | ||
* @param componentClassName the component instance class name | ||
* @param moduleDescription the EE module description | ||
* @param deploymentUnitServiceName the service name of the DU containing this component | ||
*/ | ||
public ManagedBeanComponentDescription(final String componentName, final String componentClassName, final EEModuleDescription moduleDescription, final ServiceName deploymentUnitServiceName) { | ||
super(componentName, componentClassName, moduleDescription, deploymentUnitServiceName); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters