Interface JavaAppStartScriptGenerationDetails
public interface JavaAppStartScriptGenerationDetails
Details for generating Java-based application start scripts.
- 
Method SummaryModifier and TypeMethodDescriptionThe display name of the applicationThis system property to use to pass the script name to the application.The classpath, relative to the application home directory.The default JVM options that are always passed to the application.The environment variable to use to control exit value (windows only)The module path, relative to the application home directory.The environment variable to use to provide additional options to the JVMThe path of the script, relative to the application home directory.
- 
Method Details- 
getApplicationNameString getApplicationName()The display name of the application
- 
getOptsEnvironmentVarString getOptsEnvironmentVar()The environment variable to use to provide additional options to the JVM
- 
getExitEnvironmentVarString getExitEnvironmentVar()The environment variable to use to control exit value (windows only)
- 
getMainClassNameString getMainClassName()
- 
getDefaultJvmOptsThe default JVM options that are always passed to the application.- Returns:
- the default JVM options
 
- 
getClasspathThe classpath, relative to the application home directory.
- 
getModulePathThe module path, relative to the application home directory.- Since:
- 6.4
 
- 
getScriptRelPathString getScriptRelPath()The path of the script, relative to the application home directory.
- 
getAppNameSystemPropertyThis system property to use to pass the script name to the application. May be null.
 
-