-
Bug
-
Resolution: Won't Fix
-
P4
-
6
-
generic
-
generic
Having an interface MyInterfaceMXBean declaring the following method:
public void foo(Enum type);
public void foo(String type);
The MXBean introspector will map the enum to a String and will not detect the conflict with the other method with String parameter.
The result is that foo(Enum) will never be called on the server side as foo(String) will be preferred.
public void foo(Enum type);
public void foo(String type);
The MXBean introspector will map the enum to a String and will not detect the conflict with the other method with String parameter.
The result is that foo(Enum) will never be called on the server side as foo(String) will be preferred.