Package omero.api
Interface AMD_IScript_getScriptsByMimetype
-
- All Superinterfaces:
Ice.AMDCallback
public interface AMD_IScript_getScriptsByMimetype extends Ice.AMDCallbackThis method returns official server scripts identified with the specified extension as a list ofOriginalFileobjects. These scripts will be executed by the server if submitted viarunScript. The input parameters necessary for proper functioning can be retrieved viagetParams. TheOriginalFile.pathvalue 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
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidice_response(java.util.List<OriginalFile> __ret)ice_response indicates that the operation completed successfully.
-
-
-
Method Detail
-
ice_response
void ice_response(java.util.List<OriginalFile> __ret)
ice_response indicates that the operation completed successfully.- Parameters:
__ret- (return value) see above.
-
-