This rule will flag instances of the string literal "com.sun.net.ssl.internal.www.protocol" in Java files. The com.sun.net.ssl.internal.www.protocol package should not be used. Instead use com.ibm.net.ssl.www2.protocol.
The quick fix will change instances of "com.sun.net.ssl.internal.www.protocol" into "com.ibm.net.ssl.www2.protocol".
For example, code fragments such as
|
System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
|
are changed to
|
System.setProperty("java.protocol.handler.pkgs", "com.ibm.net.ssl.www2.protocol");
|