All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nitorcreations.willow.deployer.NativeLauncher Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.nitorcreations.willow.deployer;

import static com.nitorcreations.willow.deployer.PropertyKeys.PROPERTY_KEY_LAUNCH_BINARY;
import static com.nitorcreations.willow.deployer.PropertyKeys.PROPERTY_KEY_PREFIX_LAUNCH_ARGS;

import java.util.Properties;

public class NativeLauncher extends AbstractLauncher implements LaunchMethod {

	@Override
	public void setProperties(Properties properties) {
		super.setProperties(properties);
		launchArgs.add(properties.getProperty(PROPERTY_KEY_LAUNCH_BINARY));
		addLauncherArgs(properties, PROPERTY_KEY_PREFIX_LAUNCH_ARGS);
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy