Class gsvEngineClass = Class.forName("com.gammastream.validity.GSVEngine");
Method m = gsvEngineClass.getMethod("sharedValidationEngine", new Class[]{});
Object dummy = null;
sharedGSVEngineInstance = m.invoke(dummy, new Object[]{});
} catch (ClassNotFoundException e1) {
throw new NSForwardException(e1);
} catch (NoSuchMethodException e2) {
throw new NSForwardException(e2);
} catch (IllegalAccessException e3) {
throw new NSForwardException(e3);
} catch (InvocationTargetException e4) {
throw new NSForwardException(e4);
}
}
return sharedGSVEngineInstance;
}