
com.sun.jndi.ldap.LdapCtx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of findsecbugs-samples-deps Show documentation
Show all versions of findsecbugs-samples-deps Show documentation
Find Security Bugs stub dependencies use for the samples.
This module create facades for all the APIs (classes, interfaces and annotations)
that are use in the test code. The objective is to avoid the needed to download
all the framework supported by the static analyzer.
The newest version!
package com.sun.jndi.ldap;
import javax.naming.Name;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
public class LdapCtx {
public NamingEnumeration search(Name name, String filter, SearchControls cons) throws NamingException {
return null;
}
public NamingEnumeration search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException {
return null;
}
public NamingEnumeration search(String name, String filter, SearchControls cons) throws NamingException {
return null;
}
public NamingEnumeration search(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy