mirror of
https://github.com/github/codeql.git
synced 2026-05-05 13:45:19 +02:00
patch upper-case acronyms to be PascalCase
This commit is contained in:
@@ -25,12 +25,15 @@ class TypeUnboundIdLdapFilter extends Class {
|
||||
}
|
||||
|
||||
/** The class `com.unboundid.ldap.sdk.LDAPConnection`. */
|
||||
class TypeUnboundIdLDAPConnection extends Class {
|
||||
TypeUnboundIdLDAPConnection() {
|
||||
class TypeUnboundIdLdapConnection extends Class {
|
||||
TypeUnboundIdLdapConnection() {
|
||||
this.hasQualifiedName("com.unboundid.ldap.sdk", "LDAPConnection")
|
||||
}
|
||||
}
|
||||
|
||||
/** DEPRECATED: Alias for TypeUnboundIdLdapConnection */
|
||||
deprecated class TypeUnboundIdLDAPConnection = TypeUnboundIdLdapConnection;
|
||||
|
||||
/*--- Methods ---*/
|
||||
/** A method with the name `setBaseDN` declared in `com.unboundid.ldap.sdk.SearchRequest`. */
|
||||
class MethodUnboundIdSearchRequestSetBaseDN extends Method {
|
||||
@@ -89,25 +92,36 @@ class MethodUnboundIdFilterSimplifyFilter extends Method {
|
||||
}
|
||||
|
||||
/** A method with the name `search` declared in `com.unboundid.ldap.sdk.LDAPConnection`. */
|
||||
class MethodUnboundIdLDAPConnectionSearch extends Method {
|
||||
MethodUnboundIdLDAPConnectionSearch() {
|
||||
this.getDeclaringType() instanceof TypeUnboundIdLDAPConnection and
|
||||
class MethodUnboundIdLdapConnectionSearch extends Method {
|
||||
MethodUnboundIdLdapConnectionSearch() {
|
||||
this.getDeclaringType() instanceof TypeUnboundIdLdapConnection and
|
||||
this.hasName("search")
|
||||
}
|
||||
}
|
||||
|
||||
/** DEPRECATED: Alias for MethodUnboundIdLdapConnectionSearch */
|
||||
deprecated class MethodUnboundIdLDAPConnectionSearch = MethodUnboundIdLdapConnectionSearch;
|
||||
|
||||
/** A method with the name `asyncSearch` declared in `com.unboundid.ldap.sdk.LDAPConnection`. */
|
||||
class MethodUnboundIdLDAPConnectionAsyncSearch extends Method {
|
||||
MethodUnboundIdLDAPConnectionAsyncSearch() {
|
||||
this.getDeclaringType() instanceof TypeUnboundIdLDAPConnection and
|
||||
class MethodUnboundIdLdapConnectionAsyncSearch extends Method {
|
||||
MethodUnboundIdLdapConnectionAsyncSearch() {
|
||||
this.getDeclaringType() instanceof TypeUnboundIdLdapConnection and
|
||||
this.hasName("asyncSearch")
|
||||
}
|
||||
}
|
||||
|
||||
/** DEPRECATED: Alias for MethodUnboundIdLdapConnectionAsyncSearch */
|
||||
deprecated class MethodUnboundIdLDAPConnectionAsyncSearch =
|
||||
MethodUnboundIdLdapConnectionAsyncSearch;
|
||||
|
||||
/** A method with the name `searchForEntry` declared in `com.unboundid.ldap.sdk.LDAPConnection`. */
|
||||
class MethodUnboundIdLDAPConnectionSearchForEntry extends Method {
|
||||
MethodUnboundIdLDAPConnectionSearchForEntry() {
|
||||
this.getDeclaringType() instanceof TypeUnboundIdLDAPConnection and
|
||||
class MethodUnboundIdLdapConnectionSearchForEntry extends Method {
|
||||
MethodUnboundIdLdapConnectionSearchForEntry() {
|
||||
this.getDeclaringType() instanceof TypeUnboundIdLdapConnection and
|
||||
this.hasName("searchForEntry")
|
||||
}
|
||||
}
|
||||
|
||||
/** DEPRECATED: Alias for MethodUnboundIdLdapConnectionSearchForEntry */
|
||||
deprecated class MethodUnboundIdLDAPConnectionSearchForEntry =
|
||||
MethodUnboundIdLdapConnectionSearchForEntry;
|
||||
|
||||
Reference in New Issue
Block a user