| | |
| | | Class handlerClass; |
| | | try |
| | | { |
| | | // FIXME -- Should this be done with a custom class loader? |
| | | handlerClass = Class.forName(classNameAttr.pendingValue()); |
| | | handlerClass = DirectoryServer.loadClass(classNameAttr.pendingValue()); |
| | | } |
| | | catch (Exception e) |
| | | { |
| | |
| | | { |
| | | try |
| | | { |
| | | // FIXME -- Should this be done with a dynamic class loader? |
| | | Class handlerClass = Class.forName(className); |
| | | Class handlerClass = DirectoryServer.loadClass(className); |
| | | handler = (ExtendedOperationHandler) handlerClass.newInstance(); |
| | | } |
| | | catch (Exception e) |
| | |
| | | Class handlerClass; |
| | | try |
| | | { |
| | | // FIXME -- Should this be done with a custom class loader? |
| | | handlerClass = Class.forName(classNameAttr.pendingValue()); |
| | | handlerClass = DirectoryServer.loadClass(classNameAttr.pendingValue()); |
| | | } |
| | | catch (Exception e) |
| | | { |
| | |
| | | ExtendedOperationHandler handler; |
| | | try |
| | | { |
| | | // FIXME -- Should this be done with a dynamic class loader? |
| | | Class handlerClass = Class.forName(className); |
| | | Class handlerClass = DirectoryServer.loadClass(className); |
| | | handler = (ExtendedOperationHandler) handlerClass.newInstance(); |
| | | } |
| | | catch (Exception e) |