* @author jdelong@redhat.com
*
*/
public static RuleService getRuleService(String className)
throws RuleServiceException {
RuleService rs = null;
logger.log(Level.DEBUG, "Going to load " + className);
try {
// instruct class loader to load the RuleService Implementation
Class<?> rsClass = ClassUtil.forName(className,
RuleServiceFactory.class);