if (className != null) {
try {
final ClassLoader cl = Thread.currentThread().getContextClassLoader();
Class<?> c = cl.loadClass(className);
Object o = c.newInstance();
ExtFSEntry entry = (ExtFSEntry) o;
if (entry.getName() == null) {
if (entryName != null) {
entry.setName(entryName);
} else {
entry.setName(className);
}
}
entry.setParent(extdir);
FSEntry add = entry;
extdir.addFSE(add);
} catch (ClassCastException ex) {
log.error("Given class " + className + " does not implement .");
} catch (ClassNotFoundException ex) {