mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
26 lines
815 B
Plaintext
26 lines
815 B
Plaintext
/**
|
|
* Provides classes and predicates for working with the Apache LDAP API.
|
|
*/
|
|
|
|
import java
|
|
|
|
/*--- Types ---*/
|
|
/** The interface `org.apache.directory.ldap.client.api.LdapConnection`. */
|
|
class TypeApacheLdapConnection extends Interface {
|
|
TypeApacheLdapConnection() {
|
|
this.hasQualifiedName("org.apache.directory.ldap.client.api", "LdapConnection")
|
|
}
|
|
}
|
|
|
|
/** The interface `org.apache.directory.api.ldap.model.message.SearchRequest`. */
|
|
class TypeApacheSearchRequest extends Interface {
|
|
TypeApacheSearchRequest() {
|
|
this.hasQualifiedName("org.apache.directory.api.ldap.model.message", "SearchRequest")
|
|
}
|
|
}
|
|
|
|
/** The class `org.apache.directory.api.ldap.model.name.Dn`. */
|
|
class TypeApacheDn extends Class {
|
|
TypeApacheDn() { this.hasQualifiedName("org.apache.directory.api.ldap.model.name", "Dn") }
|
|
}
|