public interface IScriptPrx extends ServiceInterfacePrx
sf = client.createSession()
svc = sf.getScriptService()
scripts = svc.getScripts()
if len(scripts) >= 1:
script_id = svc.keys()\[-1]
else:
script_id = svc.uploadScript('/test/my_script.py', SCRIPT_TEXT)
params = svc.getParams(script_id)
# You will need to parse the params to create the proper input
inputs = {}
# The last parameter is how long to wait as an RInt
proc = svc.runScript(script_id, inputs, None)
try:
cb = omero.scripts.ProcessCallbackI(client, proc)
while not cb.block(1000): # ms.
pass
cb.close()
rv = proc.getResults(0)
finally:
proc.close(False)
See OMERO.scripts for more information.Modifier and Type | Method and Description |
---|---|
Ice.AsyncResult |
begin_canRunScript(long scriptID)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
Callback_IScript_canRunScript __cb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
Ice.Callback __cb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
IceInternal.Functional_BoolCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
IceInternal.Functional_BoolCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_canRunScript __cb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_BoolCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_canRunScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_BoolCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Returns true if there is a processor which will run the
given script.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
Callback_IScript_deleteScript __cb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
Ice.Callback __cb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_deleteScript __cb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_deleteScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Delete the script on the server with id.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
Callback_IScript_editScript __cb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
Ice.Callback __cb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_editScript __cb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_editScript(OriginalFile fileObject,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_VoidCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Modify the text for the given script object.
|
Ice.AsyncResult |
begin_getParams(long scriptID)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
Callback_IScript_getParams __cb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
Ice.Callback __cb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
IceInternal.Functional_GenericCallback1<JobParams> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
IceInternal.Functional_GenericCallback1<JobParams> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getParams __cb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<JobParams> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getParams(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<JobParams> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
Callback_IScript_getScriptID __cb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
Ice.Callback __cb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getScriptID __cb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScriptID(java.lang.String path,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the id of an official script by the script path.
|
Ice.AsyncResult |
begin_getScripts()
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(Callback_IScript_getScripts __cb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(Ice.Callback __cb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getScripts __cb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
This method returns official server scripts as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
Callback_IScript_getScriptsByMimetype __cb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
Ice.Callback __cb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
java.util.Map<java.lang.String,java.lang.String> __ctx)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getScriptsByMimetype __cb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptsByMimetype(java.lang.String mimetype,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
Ice.AsyncResult |
begin_getScriptText(long scriptID)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
Callback_IScript_getScriptText __cb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
Ice.Callback __cb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getScriptText __cb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptText(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the text from the server for the script with given id.
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
Callback_IScript_getScriptWithDetails __cb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
Ice.Callback __cb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getScriptWithDetails __cb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getScriptWithDetails(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Get the script from the server with details from OriginalFile
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
Callback_IScript_getUserScripts __cb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
Ice.Callback __cb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_getUserScripts __cb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_getUserScripts(java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Returns non-official scripts which have been uploaded by individual users.
|
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
Callback_IScript_runScript __cb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
Ice.Callback __cb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
java.util.Map<java.lang.String,java.lang.String> __ctx)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_runScript __cb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
If
ResourceError is thrown, then no
Processor is available. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
Callback_IScript_uploadOfficialScript __cb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
Ice.Callback __cb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_uploadOfficialScript __cb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Like
uploadScript but is only callable by
administrators. |
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
Callback_IScript_uploadScript __cb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
Ice.Callback __cb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_uploadScript __cb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_uploadScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_LongCallback __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Upload a user script to the server and return the id.
|
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
Callback_IScript_validateScript __cb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
Ice.Callback __cb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Callback_IScript_validateScript __cb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
Ice.Callback __cb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
Ice.AsyncResult |
begin_validateScript(Job j,
java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx,
IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb,
IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb,
IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb,
IceInternal.Functional_BoolCallback __sentCb)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
boolean |
canRunScript(long scriptID)
Returns true if there is a processor which will run the
given script.
|
boolean |
canRunScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Returns true if there is a processor which will run the
given script.
|
void |
deleteScript(long scriptID)
Delete the script on the server with id.
|
void |
deleteScript(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Delete the script on the server with id.
|
void |
editScript(OriginalFile fileObject,
java.lang.String scriptText)
Modify the text for the given script object.
|
void |
editScript(OriginalFile fileObject,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Modify the text for the given script object.
|
boolean |
end_canRunScript(Ice.AsyncResult __result)
Returns true if there is a processor which will run the
given script.
|
void |
end_deleteScript(Ice.AsyncResult __result)
Delete the script on the server with id.
|
void |
end_editScript(Ice.AsyncResult __result)
Modify the text for the given script object.
|
JobParams |
end_getParams(Ice.AsyncResult __result)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
long |
end_getScriptID(Ice.AsyncResult __result)
Get the id of an official script by the script path.
|
java.util.List<OriginalFile> |
end_getScripts(Ice.AsyncResult __result)
This method returns official server scripts as a list of
OriginalFile objects. |
java.util.List<OriginalFile> |
end_getScriptsByMimetype(Ice.AsyncResult __result)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
java.lang.String |
end_getScriptText(Ice.AsyncResult __result)
Get the text from the server for the script with given id.
|
java.util.Map<java.lang.String,RType> |
end_getScriptWithDetails(Ice.AsyncResult __result)
Get the script from the server with details from OriginalFile
|
java.util.List<OriginalFile> |
end_getUserScripts(Ice.AsyncResult __result)
Returns non-official scripts which have been uploaded by individual users.
|
ScriptProcessPrx |
end_runScript(Ice.AsyncResult __result)
If
ResourceError is thrown, then no
Processor is available. |
long |
end_uploadOfficialScript(Ice.AsyncResult __result)
Like
uploadScript but is only callable by
administrators. |
long |
end_uploadScript(Ice.AsyncResult __result)
Upload a user script to the server and return the id.
|
OriginalFile |
end_validateScript(Ice.AsyncResult __result)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
JobParams |
getParams(long scriptID)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
JobParams |
getParams(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the parameters that the script takes and returns, along with
other metadata available from the script.
|
long |
getScriptID(java.lang.String path)
Get the id of an official script by the script path.
|
long |
getScriptID(java.lang.String path,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the id of an official script by the script path.
|
java.util.List<OriginalFile> |
getScripts()
This method returns official server scripts as a list of
OriginalFile objects. |
java.util.List<OriginalFile> |
getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx)
This method returns official server scripts as a list of
OriginalFile objects. |
java.util.List<OriginalFile> |
getScriptsByMimetype(java.lang.String mimetype)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
java.util.List<OriginalFile> |
getScriptsByMimetype(java.lang.String mimetype,
java.util.Map<java.lang.String,java.lang.String> __ctx)
This method returns official server scripts identified
with the specified extension as a list of
OriginalFile objects. |
java.lang.String |
getScriptText(long scriptID)
Get the text from the server for the script with given id.
|
java.lang.String |
getScriptText(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the text from the server for the script with given id.
|
java.util.Map<java.lang.String,RType> |
getScriptWithDetails(long scriptID)
Get the script from the server with details from OriginalFile
|
java.util.Map<java.lang.String,RType> |
getScriptWithDetails(long scriptID,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Get the script from the server with details from OriginalFile
|
java.util.List<OriginalFile> |
getUserScripts(java.util.List<IObject> acceptsList)
Returns non-official scripts which have been uploaded by individual users.
|
java.util.List<OriginalFile> |
getUserScripts(java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Returns non-official scripts which have been uploaded by individual users.
|
ScriptProcessPrx |
runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs)
If
ResourceError is thrown, then no
Processor is available. |
ScriptProcessPrx |
runScript(long scriptID,
java.util.Map<java.lang.String,RType> inputs,
RInt waitSecs,
java.util.Map<java.lang.String,java.lang.String> __ctx)
If
ResourceError is thrown, then no
Processor is available. |
long |
uploadOfficialScript(java.lang.String path,
java.lang.String scriptText)
Like
uploadScript but is only callable by
administrators. |
long |
uploadOfficialScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Like
uploadScript but is only callable by
administrators. |
long |
uploadScript(java.lang.String path,
java.lang.String scriptText)
Upload a user script to the server and return the id.
|
long |
uploadScript(java.lang.String path,
java.lang.String scriptText,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Upload a user script to the server and return the id.
|
OriginalFile |
validateScript(Job j,
java.util.List<IObject> acceptsList)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
OriginalFile |
validateScript(Job j,
java.util.List<IObject> acceptsList,
java.util.Map<java.lang.String,java.lang.String> __ctx)
Used internally by processor.py to check if the script
attached to the
Job has a valid script
attached, based on the acceptsList and the current
security context. |
begin_ice_flushBatchRequests, begin_ice_flushBatchRequests, begin_ice_flushBatchRequests, begin_ice_flushBatchRequests, begin_ice_getConnection, begin_ice_getConnection, begin_ice_getConnection, begin_ice_getConnection, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_id, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_ids, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_invoke, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_isA, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, begin_ice_ping, end_ice_flushBatchRequests, end_ice_getConnection, end_ice_id, end_ice_ids, end_ice_invoke, end_ice_isA, end_ice_ping, equals, ice_adapterId, ice_batchDatagram, ice_batchOneway, ice_collocationOptimized, ice_compress, ice_connectionCached, ice_connectionId, ice_context, ice_datagram, ice_encodingVersion, ice_endpoints, ice_endpointSelection, ice_facet, ice_flushBatchRequests, ice_getAdapterId, ice_getCachedConnection, ice_getCommunicator, ice_getConnection, ice_getConnectionId, ice_getContext, ice_getEncodingVersion, ice_getEndpoints, ice_getEndpointSelection, ice_getFacet, ice_getIdentity, ice_getInvocationTimeout, ice_getLocator, ice_getLocatorCacheTimeout, ice_getRouter, ice_id, ice_id, ice_identity, ice_ids, ice_ids, ice_invocationTimeout, ice_invoke, ice_invoke, ice_isA, ice_isA, ice_isBatchDatagram, ice_isBatchOneway, ice_isCollocationOptimized, ice_isConnectionCached, ice_isDatagram, ice_isOneway, ice_isPreferSecure, ice_isSecure, ice_isTwoway, ice_locator, ice_locatorCacheTimeout, ice_oneway, ice_ping, ice_ping, ice_preferSecure, ice_router, ice_secure, ice_timeout, ice_twoway
java.util.List<OriginalFile> getScripts() throws ServerError
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
ApiUsageException
SecurityViolation
ServerError
java.util.List<OriginalFile> getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__ctx
- The Context map to send with the invocation.ApiUsageException
SecurityViolation
ServerError
Ice.AsyncResult begin_getScripts()
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
Ice.AsyncResult begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getScripts(Ice.Callback __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScripts(Callback_IScript_getScripts __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getScripts __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScripts(IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScripts(IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScripts(java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.java.util.List<OriginalFile> end_getScripts(Ice.AsyncResult __result) throws ServerError
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
__result
- The asynchronous result object.ApiUsageException
SecurityViolation
ServerError
java.util.List<OriginalFile> getScriptsByMimetype(java.lang.String mimetype) throws ServerError
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.ApiUsageException
SecurityViolation
ServerError
java.util.List<OriginalFile> getScriptsByMimetype(java.lang.String mimetype, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__ctx
- The Context map to send with the invocation.ApiUsageException
SecurityViolation
ServerError
Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, java.util.Map<java.lang.String,java.lang.String> __ctx)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, Ice.Callback __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, Callback_IScript_getScriptsByMimetype __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getScriptsByMimetype __cb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptsByMimetype(java.lang.String mimetype, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
mimetype
- the mimetype identifying the scripts.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.java.util.List<OriginalFile> end_getScriptsByMimetype(Ice.AsyncResult __result) throws ServerError
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts("py")
for script in scripts:
text = scriptService.getScriptText(script.id.val)
path = script.path.val\[1:\] # First symbol is a "/"
path = path.replace("/",".")
print "Possible import: %s" % path
__result
- The asynchronous result object.ApiUsageException
SecurityViolation
ServerError
java.util.List<OriginalFile> getUserScripts(java.util.List<IObject> acceptsList) throws ServerError
ServerError
java.util.List<OriginalFile> getUserScripts(java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList)
Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx)
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, Ice.Callback __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, Callback_IScript_getUserScripts __cb)
__cb
- The asynchronous callback object.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getUserScripts __cb)
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getUserScripts(java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.List<OriginalFile>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.java.util.List<OriginalFile> end_getUserScripts(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ServerError
long getScriptID(java.lang.String path) throws ServerError
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.ApiUsageException
SecurityViolation
ServerError
long getScriptID(java.lang.String path, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__ctx
- The Context map to send with the invocation.ApiUsageException
SecurityViolation
ServerError
Ice.AsyncResult begin_getScriptID(java.lang.String path)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.Ice.AsyncResult begin_getScriptID(java.lang.String path, java.util.Map<java.lang.String,java.lang.String> __ctx)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getScriptID(java.lang.String path, Ice.Callback __cb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptID(java.lang.String path, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptID(java.lang.String path, Callback_IScript_getScriptID __cb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptID(java.lang.String path, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getScriptID __cb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptID(java.lang.String path, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptID(java.lang.String path, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getScriptID(java.lang.String path, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptID(java.lang.String path, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
getUserScriptID
)
since the path is not guaranteed to be unique.path
- The name of the script.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.long end_getScriptID(Ice.AsyncResult __result) throws ServerError
getUserScriptID
)
since the path is not guaranteed to be unique.__result
- The asynchronous result object.ApiUsageException
SecurityViolation
ServerError
java.lang.String getScriptText(long scriptID) throws ServerError
scriptID
- see above.ApiUsageException
ServerError
java.lang.String getScriptText(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
scriptID
- see above.__ctx
- The Context map to send with the invocation.ApiUsageException
ServerError
Ice.AsyncResult begin_getScriptText(long scriptID)
scriptID
- see above.Ice.AsyncResult begin_getScriptText(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx)
scriptID
- see above.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getScriptText(long scriptID, Ice.Callback __cb)
scriptID
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptText(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptText(long scriptID, Callback_IScript_getScriptText __cb)
scriptID
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptText(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getScriptText __cb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptText(long scriptID, IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptText(long scriptID, IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getScriptText(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptText(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.lang.String> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.java.lang.String end_getScriptText(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ApiUsageException
ServerError
long uploadScript(java.lang.String path, java.lang.String scriptText) throws ServerError
path
- see above.scriptText
- see above.ApiUsageException
SecurityViolation
ServerError
long uploadScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
path
- see above.scriptText
- see above.__ctx
- The Context map to send with the invocation.ApiUsageException
SecurityViolation
ServerError
Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText)
path
- see above.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx)
path
- see above.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, Ice.Callback __cb)
path
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
path
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, Callback_IScript_uploadScript __cb)
path
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_uploadScript __cb)
path
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
path
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
path
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
path
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_uploadScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
path
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.long end_uploadScript(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ApiUsageException
SecurityViolation
ServerError
long uploadOfficialScript(java.lang.String path, java.lang.String scriptText) throws ServerError
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.ServerError
long uploadOfficialScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, Ice.Callback __cb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, Callback_IScript_uploadOfficialScript __cb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_uploadOfficialScript __cb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_uploadOfficialScript(java.lang.String path, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_LongCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.long end_uploadOfficialScript(Ice.AsyncResult __result) throws ServerError
uploadScript
but is only callable by
administrators. The parameters for the script are also
checked.__result
- The asynchronous result object.ServerError
void editScript(OriginalFile fileObject, java.lang.String scriptText) throws ServerError
fileObject
- see above.scriptText
- see above.ApiUsageException
SecurityViolation
ServerError
void editScript(OriginalFile fileObject, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
fileObject
- see above.scriptText
- see above.__ctx
- The Context map to send with the invocation.ApiUsageException
SecurityViolation
ServerError
Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText)
fileObject
- see above.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx)
fileObject
- see above.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, Ice.Callback __cb)
fileObject
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
fileObject
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, Callback_IScript_editScript __cb)
fileObject
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_editScript __cb)
fileObject
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
fileObject
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
fileObject
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
fileObject
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_editScript(OriginalFile fileObject, java.lang.String scriptText, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
fileObject
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.void end_editScript(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ApiUsageException
SecurityViolation
ServerError
java.util.Map<java.lang.String,RType> getScriptWithDetails(long scriptID) throws ServerError
scriptID
- see aboveApiUsageException
ServerError
java.util.Map<java.lang.String,RType> getScriptWithDetails(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
scriptID
- see above__ctx
- The Context map to send with the invocation.ApiUsageException
ServerError
Ice.AsyncResult begin_getScriptWithDetails(long scriptID)
scriptID
- see aboveIce.AsyncResult begin_getScriptWithDetails(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx)
scriptID
- see above__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, Ice.Callback __cb)
scriptID
- see above__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
scriptID
- see above__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, Callback_IScript_getScriptWithDetails __cb)
scriptID
- see above__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getScriptWithDetails __cb)
scriptID
- see above__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- see above__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- see above__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- see above__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getScriptWithDetails(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<java.util.Map<java.lang.String,RType>> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- see above__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.java.util.Map<java.lang.String,RType> end_getScriptWithDetails(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ApiUsageException
ServerError
JobParams getParams(long scriptID) throws ServerError
scriptID
- see above.ApiUsageException
ServerError
JobParams getParams(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
scriptID
- see above.__ctx
- The Context map to send with the invocation.ApiUsageException
ServerError
Ice.AsyncResult begin_getParams(long scriptID)
scriptID
- see above.Ice.AsyncResult begin_getParams(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx)
scriptID
- see above.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_getParams(long scriptID, Ice.Callback __cb)
scriptID
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getParams(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getParams(long scriptID, Callback_IScript_getParams __cb)
scriptID
- see above.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getParams(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_getParams __cb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_getParams(long scriptID, IceInternal.Functional_GenericCallback1<JobParams> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getParams(long scriptID, IceInternal.Functional_GenericCallback1<JobParams> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- see above.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_getParams(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<JobParams> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_getParams(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<JobParams> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- see above.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.JobParams end_getParams(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ApiUsageException
ServerError
void deleteScript(long scriptID) throws ServerError
scriptID
- Id of the script to delete.ApiUsageException
SecurityViolation
ServerError
void deleteScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
scriptID
- Id of the script to delete.__ctx
- The Context map to send with the invocation.ApiUsageException
SecurityViolation
ServerError
Ice.AsyncResult begin_deleteScript(long scriptID)
scriptID
- Id of the script to delete.Ice.AsyncResult begin_deleteScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx)
scriptID
- Id of the script to delete.__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_deleteScript(long scriptID, Ice.Callback __cb)
scriptID
- Id of the script to delete.__cb
- The asynchronous callback object.Ice.AsyncResult begin_deleteScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
scriptID
- Id of the script to delete.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_deleteScript(long scriptID, Callback_IScript_deleteScript __cb)
scriptID
- Id of the script to delete.__cb
- The asynchronous callback object.Ice.AsyncResult begin_deleteScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_deleteScript __cb)
scriptID
- Id of the script to delete.__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_deleteScript(long scriptID, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- Id of the script to delete.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_deleteScript(long scriptID, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- Id of the script to delete.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_deleteScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
scriptID
- Id of the script to delete.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_deleteScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_VoidCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
scriptID
- Id of the script to delete.__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.void end_deleteScript(Ice.AsyncResult __result) throws ServerError
__result
- The asynchronous result object.ApiUsageException
SecurityViolation
ServerError
ScriptProcessPrx runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs) throws ServerError
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
ServerError
ScriptProcessPrx runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, java.util.Map<java.lang.String,java.lang.String> __ctx)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, Ice.Callback __cb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__cb
- The asynchronous callback object.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, Callback_IScript_runScript __cb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__cb
- The asynchronous callback object.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_runScript __cb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_runScript(long scriptID, java.util.Map<java.lang.String,RType> inputs, RInt waitSecs, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<ScriptProcessPrx> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.ScriptProcessPrx end_runScript(Ice.AsyncResult __result) throws ServerError
ResourceError
is thrown, then no
Processor
is available. Use scheduleJob
to create a ScriptJob
in the
Waiting state. A Processor
may become
available.
try:
proc = scriptService.runScript(1, {}, None)
except ResourceError:
job = scriptService.scheduleScript(1, {}, None)
The ScriptProcess
proxy MUST be closed before
exiting. If you would like the script execution to continue
in the background, pass True
as the argument.
try:
proc.poll() # See if process is finished
finally:
proc.close(True) # Detach and execution can continue
# proc.close(False) # OR script is immediately stopped.
__result
- The asynchronous result object.ServerError
boolean canRunScript(long scriptID) throws ServerError
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
ServerError
boolean canRunScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_canRunScript(long scriptID)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
Ice.AsyncResult begin_canRunScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_canRunScript(long scriptID, Ice.Callback __cb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__cb
- The asynchronous callback object.Ice.AsyncResult begin_canRunScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_canRunScript(long scriptID, Callback_IScript_canRunScript __cb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__cb
- The asynchronous callback object.Ice.AsyncResult begin_canRunScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_canRunScript __cb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_canRunScript(long scriptID, IceInternal.Functional_BoolCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_canRunScript(long scriptID, IceInternal.Functional_BoolCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_canRunScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_BoolCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_canRunScript(long scriptID, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_BoolCallback __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.boolean end_canRunScript(Ice.AsyncResult __result) throws ServerError
Either the script is an official script and this method
will return true (though an individual invocation may fail
with an ResourceError
for some reason)
or this is a user script, and a usermode processor
must be active which takes the scripts user or group.
__result
- The asynchronous result object.ServerError
OriginalFile validateScript(Job j, java.util.List<IObject> acceptsList) throws ServerError
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
ServerError
OriginalFile validateScript(Job j, java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx) throws ServerError
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__ctx
- The Context map to send with the invocation.ServerError
Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__ctx
- The Context map to send with the invocation.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, Ice.Callback __cb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__cb
- The asynchronous callback object.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, Ice.Callback __cb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, Callback_IScript_validateScript __cb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__cb
- The asynchronous callback object.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, Callback_IScript_validateScript __cb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__ctx
- The Context map to send with the invocation.__cb
- The asynchronous callback object.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.Ice.AsyncResult begin_validateScript(Job j, java.util.List<IObject> acceptsList, java.util.Map<java.lang.String,java.lang.String> __ctx, IceInternal.Functional_GenericCallback1<OriginalFile> __responseCb, IceInternal.Functional_GenericCallback1<Ice.UserException> __userExceptionCb, IceInternal.Functional_GenericCallback1<Ice.Exception> __exceptionCb, IceInternal.Functional_BoolCallback __sentCb)
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__ctx
- The Context map to send with the invocation.__responseCb
- The lambda response callback.__userExceptionCb
- The lambda user exception callback.__exceptionCb
- The lambda exception callback.__sentCb
- The lambda sent callback.OriginalFile end_validateScript(Ice.AsyncResult __result) throws ServerError
Job
has a valid script
attached, based on the acceptsList
and the current
security context.
An example of an acceptsList might be Experimenter(myUserId, False), meaning that only scripts belonging to me should be trusted. An empty list implies that the server should return what it would by default trust. A valid script will be returned if it exists; otherwise null.
__result
- The asynchronous result object.ServerError