Package org.jboss.soa.esb.actions.naming.strategy

Examples of org.jboss.soa.esb.actions.naming.strategy.FileNamingStrategy.configure()


      throw new RuntimeException("Strategy does not have 'class' attribute.");
    }
    try {
      Class strategyClass = ClassUtil.forName(classNode.getNodeValue(), this.getClass());
      FileNamingStrategy strategy = (FileNamingStrategy) strategyClass.newInstance();
      strategy.configure(strategyNode);
      return strategy;
    } catch (DOMException e) {
      throw new RuntimeException(e);
    } catch (ClassNotFoundException e) {
      throw new RuntimeException(e);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.