Advertisement
jbjares

DataAnalysisServiceMethodSignature

Jun 6th, 2015
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1.     public String greeting(@RequestParam(value="workspacePath", defaultValue="NONE") String workspacePath,
  2.                             @RequestParam(value="projectName", defaultValue="PROJECTTEST") String projectName,
  3.                             @RequestParam(value="simulationName", defaultValue="SIMULATIONUNITTEST") String simulationName,
  4.                             @RequestParam(value="xName", defaultValue="DISTANCEFROMTHECOCHLEAAPEX") String xName,
  5.                             @RequestParam(value="yName", defaultValue="FREQUENCYATSTAPLES") String yName) throws Exception {
  6.         String result = showSemanticInterpretation(workspacePath, projectName, simulationName, xName, yName);
  7.         return result;
  8.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement