-
Bug
-
Resolution: Done
-
Major
-
2.3.0.Final
-
None
-
None
Java API incorrectly identifies interface properties.
Example:
https://github.com/bradsdavis/windup-lab-samples.git
Interface:
package com.rhc.booking.services;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface EventServer extends Remote {
public String processEvent(String event) throws RemoteException;
}
Profiled by Windup, the API says that the interface "extends java.lang.Object" and "implements java.rmi.Remote".