com.ibm.opencard.script
Class ScriptInterpreter
java.lang.Object
|
+--com.ibm.opencard.script.ScriptInterpreter
- public class ScriptInterpreter
- extends java.lang.Object
An interpreter for IBM's SmartCard Toolkit scripts.
- Version:
- $Id: ScriptInterpreter.java,v 1.1 1999/12/02 16:06:06 damke Exp $
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
ScriptInterpreter
public ScriptInterpreter(HandlerChain handlerchain,
APDUSender apdusender)
- Instantiates a script interpreter.
- Parameters:
handlerchain - a collection of handlers for various requests
setDictionary
public void setDictionary(Dictionary dictionary)
- Set the dictionary to be used.
- Parameters:
dictionary - the dictionary to be used
executeOrder
public void executeOrder(java.lang.String order,
Script script,
Dictionary dictionary,
TLVBuffer blackboard)
throws CardServiceException,
CardTerminalException
- Executes a given order within the given script, using optional dictionary
and optional blackboard.
- Parameters:
order - the name of the script procedure to be executedscript - the script containing the procedure that shall be
executeddictionary - the dictionary to be used (optional)blackboard - the blackbaord to be used (optional)
|