//Going through the connector module classloader chain to find
// class and return the first match.
for (Iterator iter = classLoaderChain.iterator(); iter.hasNext();) {
ASURLClassLoader ccl = (ASURLClassLoader) iter.next();
try {
clz = ccl.loadClass(name);
if (clz != null) {
if (resolve) {
resolveClass(clz);
}
return clz;