* @param properties the properties to be associated with the execution context.
* @param classloader the class loader for loading foreign classes and accessing resources when running in standalone JAR mode. Must be non-null.
* @return an execution context for use with standalone JARs.
*/
public static ExecutionContext makeExecutionContext(final ExecutionContextProperties properties, final ClassLoader classloader) {
return new RTExecutionContext(properties, new StandaloneRuntimeEnvironment(classloader, new StandaloneJarResourceAccess(classloader)));
}