Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
1.1.0
-
None
Description
Consider having a producer method for an interface
@Produces @ApplicationScoped public MyEndpoint createMyEndpoint() { return JAXRSClientFactory.create(serviceUrl, MyEndpoint.class); }
In this case MeecrowaveBus.java blows up because the superclass of an interface is always Object.class.
if (aClass.getName().contains("$$")) { return aClass.getSuperclass(); }