com.nitorcreations.willow.deployer.launch.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.launch;
import static com.nitorcreations.willow.deployer.PropertyKeys.PROPERTY_KEY_SUFFIX_ARGS;
import static com.nitorcreations.willow.deployer.PropertyKeys.PROPERTY_KEY_SUFFIX_BINARY;
import javax.inject.Named;
import com.nitorcreations.willow.utils.MergeableProperties;
@Named
public class NativeLauncher extends AbstractLauncher {
@Override
public void setProperties(MergeableProperties properties, LaunchCallback callback) {
super.setProperties(properties, callback);
launchArgs.add(properties.getProperty(PROPERTY_KEY_SUFFIX_BINARY));
addLauncherArgs(properties, PROPERTY_KEY_SUFFIX_ARGS);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy