Package uk.co.javahelp.fitnesse.slim

Source Code of uk.co.javahelp.fitnesse.slim.SpringSlimRunner

package uk.co.javahelp.fitnesse.slim;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;

import uk.co.javahelp.fitnesse.Util;

public class SpringSlimRunner {

  private final ApplicationContext context;
 
  private String beanName;
 
  private String methodName;
 
  public SpringSlimRunner(String resources) {
    this.context = new GenericXmlApplicationContext(resources);
  }

  public void setBeanName(String beanName) {
    this.beanName = beanName;
  }

  public void setMethodName(String methodName) {
    this.methodName = methodName;
  }

  public String exec() throws SecurityException, NoSuchMethodException {
    return Util.exec(context, beanName, methodName);
  }
}
TOP

Related Classes of uk.co.javahelp.fitnesse.slim.SpringSlimRunner

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.