예제 #1
0
 public Object runScript(String filename, String scriptContent) throws Exception {
   BSFOTPScript script = new BSFOTPScript(otpServer, filename, scriptContent);
   return script.run();
 }
예제 #2
0
 public Object runScript(File scriptFile) throws Exception {
   BSFOTPScript script = new BSFOTPScript(otpServer, scriptFile);
   return script.run();
 }