Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de5efb commit 12dc11aCopy full SHA for 12dc11a
1 file changed
java/ql/lib/semmle/code/java/security/Encryption.qll
@@ -143,13 +143,15 @@ class CreateSslEngineMethod extends Method {
143
}
144
145
146
+/** The `setConnectionFactory` method of the class `javax.net.ssl.HttpsURLConnection`. */
147
class SetConnectionFactoryMethod extends Method {
148
SetConnectionFactoryMethod() {
149
this.hasName("setSSLSocketFactory") and
150
this.getDeclaringType().getAnAncestor() instanceof HttpsUrlConnection
151
152
153
154
+/** The `setDefaultConnectionFactory` method of the class `javax.net.ssl.HttpsURLConnection`. */
155
class SetDefaultConnectionFactoryMethod extends Method {
156
SetDefaultConnectionFactoryMethod() {
157
this.hasName("setDefaultSSLSocketFactory") and
0 commit comments