|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.scripting.bsh.BshScriptUtils
public abstract class BshScriptUtils
Utility methods for handling BeanShell-scripted objects.
Nested Class Summary | |
---|---|
static class |
BshScriptUtils.BshExecutionException
Exception to be thrown on script execution failure. |
Constructor Summary | |
---|---|
BshScriptUtils()
|
Method Summary | |
---|---|
static Object |
createBshObject(String scriptSource)
Create a new BeanShell-scripted object from the given script source. |
static Object |
createBshObject(String scriptSource,
Class[] scriptInterfaces)
Create a new BeanShell-scripted object from the given script source, using the default ClassLoader. |
static Object |
createBshObject(String scriptSource,
Class[] scriptInterfaces,
ClassLoader classLoader)
Create a new BeanShell-scripted object from the given script source. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BshScriptUtils()
Method Detail |
---|
public static Object createBshObject(String scriptSource) throws bsh.EvalError
With this createBshObject
variant, the script needs to
declare a full class or return an actual instance of the scripted object.
scriptSource
- the script source text
bsh.EvalError
- in case of BeanShell parsing failurepublic static Object createBshObject(String scriptSource, Class[] scriptInterfaces) throws bsh.EvalError
The script may either be a simple script that needs a corresponding proxy generated (implementing the specified interfaces), or declare a full class or return an actual instance of the scripted object (in which case the specified interfaces, if any, need to be implemented by that class/instance).
scriptSource
- the script source textscriptInterfaces
- the interfaces that the scripted Java object is
supposed to implement (may be null
or empty if the script itself
declares a full class or returns an actual instance of the scripted object)
bsh.EvalError
- in case of BeanShell parsing failurecreateBshObject(String, Class[], ClassLoader)
public static Object createBshObject(String scriptSource, Class[] scriptInterfaces, ClassLoader classLoader) throws bsh.EvalError
The script may either be a simple script that needs a corresponding proxy generated (implementing the specified interfaces), or declare a full class or return an actual instance of the scripted object (in which case the specified interfaces, if any, need to be implemented by that class/instance).
scriptSource
- the script source textscriptInterfaces
- the interfaces that the scripted Java object is
supposed to implement (may be null
or empty if the script itself
declares a full class or returns an actual instance of the scripted object)classLoader
- the ClassLoader to create the script proxy with
bsh.EvalError
- in case of BeanShell parsing failure
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |