1 16 17 package org.springframework.scripting; 18 19 import java.io.IOException ; 20 21 32 public interface ScriptFactory { 33 34 44 String getScriptSourceLocator(); 45 46 52 Class [] getScriptInterfaces(); 53 54 62 boolean requiresConfigInterface(); 63 64 78 Object getScriptedObject(ScriptSource scriptSource, Class [] actualInterfaces) 79 throws IOException , ScriptCompilationException; 80 81 94 Class getScriptedObjectType(ScriptSource scriptSource) 95 throws IOException , ScriptCompilationException; 96 97 } 98 | Popular Tags |