Do not use the com.sun.net.ssl.internal.www.protocol package

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 automated fix will change instances of "com.sun.net.ssl.internal.www.protocol" into "com.ibm.net.ssl.www2.protocol". Copy the custom configuration to your application build file to enable the fix automation.

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");