com.nitorcreations.willow.deployer.NativeLauncher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-deployer Show documentation
Show all versions of willow-deployer Show documentation
Willow elastic cloud application deployer
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