Returns the set of properties associated with the script version.
Properties ServerContext.getPropertiesByVersion(String script_version)
script_version The script version for which to return the associated properties.
The set of properties associated with the given script version.
These are stored in the ml_property system table. The script version is stored in the property_set_name column when the component_name is ScriptVersion. For more information, see ml_add_property system procedure.
The following example shows how to lists all the properties on a ServerContext instance associated with a given script version:
import java.util.*; ServerContext serverContext; PrintStream out Properties prop = serverContext.getPropertiesByVersion("MyScriptVersion"); prop.list(out);