File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
java/ql/src/experimental/Security/CWE/CWE-074 Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,21 @@ class TypeSearchControls extends Class {
38
38
TypeSearchControls ( ) { this .hasQualifiedName ( "javax.naming.directory" , "SearchControls" ) }
39
39
}
40
40
41
- /** The interface `org.springframework.ldap.core.LdapOperations`. */
41
+ /**
42
+ * The interface `org.springframework.ldap.core.LdapOperations` (spring-ldap 1.2.x and newer) or
43
+ * `org.springframework.ldap.LdapOperations` (spring-ldap 1.1.x).
44
+ */
42
45
class TypeSpringLdapOperations extends Interface {
43
46
TypeSpringLdapOperations ( ) {
44
47
this .hasQualifiedName ( "org.springframework.ldap.core" , "LdapOperations" ) or
45
48
this .hasQualifiedName ( "org.springframework.ldap" , "LdapOperations" )
46
49
}
47
50
}
48
51
49
- /** The interface `org.springframework.ldap.core.ContextMapper`. */
52
+ /**
53
+ * The interface `org.springframework.ldap.core.ContextMapper` (spring-ldap 1.2.x and newer) or
54
+ * `org.springframework.ldap.ContextMapper` (spring-ldap 1.1.x).
55
+ */
50
56
class TypeSpringContextMapper extends Interface {
51
57
TypeSpringContextMapper ( ) {
52
58
this .getSourceDeclaration ( ) .hasQualifiedName ( "org.springframework.ldap.core" , "ContextMapper" ) or
You can’t perform that action at this time.
0 commit comments