private LaunchScript getLaunchScript() throws IOException { if (isExecutable() || getEmbeddedLaunchScript() != null) { return new DefaultLaunchScript(getEmbeddedLaunchScript(), getEmbeddedLaunchScriptProperties()); } return null; }
private LaunchScript getLaunchScript() throws IOException { if (this.executable || this.embeddedLaunchScript != null) { return new DefaultLaunchScript(this.embeddedLaunchScript, buildLaunchScriptProperties()); } return null; }
private LaunchScript getLaunchScript() throws IOException { if (this.extension.isExecutable() || this.extension.getEmbeddedLaunchScript() != null) { return new DefaultLaunchScript(this.extension.getEmbeddedLaunchScript(), this.extension.getEmbeddedLaunchScriptProperties()); } return null; }